]> Zhao Yanbai Git Server - minix.git/commitdiff
Compiler warning fix
authorBen Gras <ben@minix3.org>
Fri, 24 Mar 2006 14:08:51 +0000 (14:08 +0000)
committerBen Gras <ben@minix3.org>
Fri, 24 Mar 2006 14:08:51 +0000 (14:08 +0000)
commands/bc/proto.h
commands/simple/calendar.c
commands/simple/cgrep.c
commands/simple/fgrep.c

index a036cb548ec261e7caf41df19321399d9128be97..8c4124d55c8073ae289867814b13111ffbb53e45 100755 (executable)
@@ -160,6 +160,3 @@ _PROTOTYPE(void process_params, (program_counter *pc, int func ));
 _PROTOTYPE(int yyparse, (void));
 _PROTOTYPE(int yylex, (void)); 
 
-/* Other things... */
-_PROTOTYPE(int getopt, (int, char * [], char * ));
-
index 136ee6231bd1926861024f27a3cee081e771e756..92b8502914dc534a5768f1a86045f8c1cf16f456 100755 (executable)
@@ -37,7 +37,9 @@ _PROTOTYPE(int newaccess, (char *file));
 _PROTOTYPE(void grep, (char *file, char *user));
 _PROTOTYPE(int date_exp, (void));
 _PROTOTYPE(char *date_pat, (time_t t));
+/*
 _PROTOTYPE(void regerror, (char *s));
+*/
 _PROTOTYPE(void error, (char *s, char *t));
 
 int main(argc, argv)
@@ -215,9 +217,9 @@ time_t t;
 }
 
 void regerror(s)
-char *s;
+const char *s;
 {                              /* regcomp() needs this */
-  error("REGULAR EXPRESSION ERROR (%s)", s);
+  error("REGULAR EXPRESSION ERROR (%s)", (char *) s);
 }
 
 void error(s, t)
index d561e060c2fec0b59536368bb0b738736127f338..d243dc9e32f1d4a2f1d2e1c900b746effa95dbb9 100755 (executable)
@@ -75,7 +75,7 @@ _PROTOTYPE(int main, (int argc, char **argv));
 _PROTOTYPE(void dosrch, (char *ifnm));
 _PROTOTYPE(void shwlin, (char *fnm, int linnum, char *line));
 _PROTOTYPE(int matlin, (char *line));
-_PROTOTYPE(void regerror, (char *s));
+_PROTOTYPE(void regerror, (const char *s));
 
 /* External data */
 
@@ -372,8 +372,8 @@ char *line;                 /* Line to match */
 
 
 void regerror(s)
-char *s;
+const char *s;
 {
-  printf("%s\n", s);
+  printf("%s\n", (char *) s);
   exit(1);
 }
index 7abb613ed2ad7116352eb167931309129e714c2b..64c04087c606a53251445bf3c153404b5671b516 100755 (executable)
@@ -75,7 +75,6 @@ _PROTOTYPE(void usage, (void));
 _PROTOTYPE(char *get_line, (void));
 _PROTOTYPE(void string_file, (void));
 _PROTOTYPE(void add_string, (char *str));
-_PROTOTYPE(int getopt, (int argc, char **argv, char *optstring));
 
 int main(argc, argv)
 int argc;