Commit c668742a authored by Ralf S. Engelschall's avatar Ralf S. Engelschall
Browse files

Fix a recently introduced warning:

| :> make
| gcc -c  -I../os/unix -I../include   -funsigned-char -DTARGET=\"apache\" -pipe
| -O -pedantic -Wall -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes
| -Wmissing-declarations -Wnested-externs -Winline `../apaci` http_main.c
| http_main.c:3485: warning: no previous prototype for `common_init'

I've checked it and it looks like a mistake from a recent commit, because
commot_init() is still a locally used function only:

| :> aps grep common_init
| ===> main/http_main.c
| static void common_init(void)
|     common_init();
|     common_init();
|     common_init();

Feel free to complain and reverse this again, but then please fix it in
addition to a prototype somewhere in the header files or at least at the start
of http_main.c, of course.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@83094 13f79535-47bb-0310-9956-ffa450edef68
parent c889fe78
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment