Browse Source

Fixed the cast. Thanks kindahl!

Monty Taylor 15 years ago
parent
commit
bd9dadef25
1 changed files with 1 additions and 2 deletions
  1. 1 2
      libgearman/modconf.c

+ 1 - 2
libgearman/modconf.c

@@ -252,8 +252,7 @@ void gmodconf_usage(modconf_st *modconf)
       if (modconf->option_getopt[y].val != 0)
       { 
         display[1]= '-';
-/* TODO: eday fix this */
-/*        display[2]= modconf->option_getopt[y].val; */
+        display[2]= (signed char)modconf->option_getopt[y].val;
         display[3]= ',';
       }