Re: httpd: fix/style: unbalanced va_start and va_end macros

2016-05-08 Thread Joerg Jung
On Wed, Apr 27, 2016 at 02:43:27PM +0200, Hiltjo Posthuma wrote: > Hi, > > The following patch for httpd fixes unbalanced va_start() and va_end() macros. > This is in style with the rest of httpd. Also POSIX says: > > "Each invocation of the va_start() and va_copy() macros shall be matched by a

httpd: fix/style: unbalanced va_start and va_end macros

2016-04-27 Thread Hiltjo Posthuma
Hi, The following patch for httpd fixes unbalanced va_start() and va_end() macros. This is in style with the rest of httpd. Also POSIX says: "Each invocation of the va_start() and va_copy() macros shall be matched by a corresponding invocation of the va_end() macro in the same function."