You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by "Dirk.vanGulik" <Di...@jrc.it> on 1995/08/11 15:57:17 UTC

va_start(foo,bar)

Apache_0.8.8 / SunSparc 20 / Solaris 2

I leave it to the experts, but I noticed that
in alloc.c and http_protocol.c, va_start is
used with two arguments:

	va_start(list,name)

For some reason, I appears that on Solaris
the include stdarg.h causes varargs.h to be 
included at the very end. The #defines in
stdarg.h are all right, but latter include
insists on a va_start with only (list) as 
an argument. This causes an argument mism.

Not that it matters :-) But it shows up
without a -Wall.

Dw.