]> Creatis software - gdcm.git/blobdiff - src/gdcmUtil.cxx
ENH: I am a moron. Fix compilation of gdcm in static mode, I had to add some new...
[gdcm.git] / src / gdcmUtil.cxx
index de171105f1341ada519638c8fca069f6d6d52497..2b59ead196c478d29db85dfdd86ccb9c6dc3c691 100644 (file)
@@ -3,12 +3,12 @@
   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/27 08:39:08 $
+  Version:   $Revision: 1.50 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
-  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details.
+  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
                                                                                 
      This software is distributed WITHOUT ANY WARRANTY; without even
      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
@@ -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