tFixed warning re: comparison between signed and unsigned. - vaccinewars - be a doctor and try to vaccinate the world
 (HTM) git clone git://src.adamsgaard.dk/vaccinewars
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit dfed59d770ca0143fd4b3408fcd4a777b7e023ee
 (DIR) parent 703ccbab26f3099a64b31c4e070a2015e11a4b52
 (HTM) Author: Ben Webb <ben@salilab.org>
       Date:   Mon,  8 Apr 2002 13:00:32 +0000
       
       Fixed warning re: comparison between signed and unsigned.
       
       
       Diffstat:
         M src/dopewars.c                      |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/src/dopewars.c b/src/dopewars.c
       t@@ -1977,7 +1977,7 @@ gboolean CheckMaxIndex(GScanner *scanner, int GlobalIndex, int StructIndex,
         */
        static void PrintEscaped(FILE *fp, gchar *str)
        {
       -  int i;
       +  guint i;
        
          for (i = 0; i < strlen(str); i++) {
            switch(str[i]) {