tFix for a signed/unsigned comparison. - 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 bffe2382fb7df2e9d6a1c88f9414aeb6ddc19b63
 (DIR) parent f4f4eff5b5edab10154e24abee828579d6e0c67d
 (HTM) Author: Ben Webb <ben@salilab.org>
       Date:   Mon, 29 Apr 2002 11:47:58 +0000
       
       Fix for a signed/unsigned comparison.
       
       
       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@@ -2685,7 +2685,7 @@ void GeneralStartup(int argc, char *argv[])
         */
        void StripTerminators(gchar *str)
        {
       -  int i;
       +  guint i;
        
          if (str) {
            for (i = 0; i < strlen(str); i++) {