From 7eb1927568e2d3ffcf41f9c04700865a6092b047 Mon Sep 17 00:00:00 2001 From: jpr Date: Fri, 4 Nov 2005 16:08:08 +0000 Subject: [PATCH] Avoid warnings --- src/gdcmValidator.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gdcmValidator.cxx b/src/gdcmValidator.cxx index a8f1b507..c287469f 100644 --- a/src/gdcmValidator.cxx +++ b/src/gdcmValidator.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmValidator.cxx,v $ Language: C++ - Date: $Date: 2005/11/03 08:28:40 $ - Version: $Revision: 1.7 $ + Date: $Date: 2005/11/04 16:08:08 $ + Version: $Revision: 1.8 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -53,7 +53,7 @@ bool CheckVM(DataEntry *entry) } */ - int n = Util::CountSubstring( s , "\\"); + unsigned int n = Util::CountSubstring( s , "\\"); n++; // number of '\' + 1 == Value Multiplicity -- 2.48.1