git-svn: trunk@4767

Török Edvin authored on 2009/02/13 04:18:35
Showing 2 changed files
... ...
@@ -1,3 +1,7 @@
1
+Thu Feb 12 21:47:27 EET 2009 (edwin)
2
+------------------------------------
3
+ * shared/getopt.c: fix
4
+
1 5
 Thu Feb 12 21:35:15 EET 2009 (edwin)
2 6
 ------------------------------------
3 7
  * shared/getopt.c, shared/getopt.h: make prototype compatible with
... ...
@@ -48,7 +48,7 @@ int getopt_reset(void)
48 48
 
49 49
 int getopt(int argc, char * const argvc[], const char *opts)
50 50
 {
51
-  char **argv = (char*)argvc;
51
+  char **argv = (char**)argvc;
52 52
   static int charind=0;
53 53
   const char *s;
54 54
   char mode, colon_mode;