]> Creatis software - gdcm.git/commitdiff
FIX: warning
authormalaterre <malaterre>
Tue, 7 Sep 2004 14:11:57 +0000 (14:11 +0000)
committermalaterre <malaterre>
Tue, 7 Sep 2004 14:11:57 +0000 (14:11 +0000)
src/gdcmUtil.cxx

index de171105f1341ada519638c8fca069f6d6d52497..ec96d5321b2941bf1cdcbc611d448212c812464b 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmUtil.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/09/07 13:57:05 $
-  Version:   $Revision: 1.48 $
+  Date:      $Date: 2004/09/07 14:11:57 $
+  Version:   $Revision: 1.49 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -63,7 +63,7 @@ void Tokenize (const std::string& str,
  int CountSubstring (const std::string& str,
                      const std::string& subStr) {
    int count = 0;   // counts how many times it appears
-   int x = 0;       // The index position in the string
+   unsigned int x = 0;       // The index position in the string
 
    do
     { x = str.find(subStr,x);       // Find the substring