diff options
Diffstat (limited to 'networking')
-rw-r--r-- | networking/httpd_indexcgi.c | 2 | ||||
-rw-r--r-- | networking/httpd_ssi.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/networking/httpd_indexcgi.c b/networking/httpd_indexcgi.c index 47b1159f4..edaaad566 100644 --- a/networking/httpd_indexcgi.c +++ b/networking/httpd_indexcgi.c | |||
@@ -211,7 +211,7 @@ static void fmt_04u(/*char *dst,*/ unsigned n) | |||
211 | fmt_02u(n % 100); | 211 | fmt_02u(n % 100); |
212 | } | 212 | } |
213 | 213 | ||
214 | int main(int argc, char *argv[]) | 214 | int main(int argc, char **argv) |
215 | { | 215 | { |
216 | dir_list_t *dir_list; | 216 | dir_list_t *dir_list; |
217 | dir_list_t *cdir; | 217 | dir_list_t *cdir; |
diff --git a/networking/httpd_ssi.c b/networking/httpd_ssi.c index 4bd9a6d97..620b96332 100644 --- a/networking/httpd_ssi.c +++ b/networking/httpd_ssi.c | |||
@@ -143,7 +143,7 @@ static void process_includes(const char *filename) | |||
143 | fclose(fp); | 143 | fclose(fp); |
144 | } | 144 | } |
145 | 145 | ||
146 | int main(int argc, char *argv[]) | 146 | int main(int argc, char **argv) |
147 | { | 147 | { |
148 | if (!argv[1]) | 148 | if (!argv[1]) |
149 | return 1; | 149 | return 1; |