From: Jeffrey Altman Date: Fri, 3 Oct 2008 15:31:59 +0000 (+0000) Subject: rx-vaargs-20081003 X-Git-Tag: openafs-devel-1_5_61~784 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=82fc110302a7f1b7e7971285777658bdce3735ac;p=packages%2Fo%2Fopenafs.git rx-vaargs-20081003 LICENSE MIT define va_list ap where it will be defined on all platforms --- diff --git a/src/rx/rx.c b/src/rx/rx.c index 6163c44d9..8647a470f 100644 --- a/src/rx/rx.c +++ b/src/rx/rx.c @@ -6337,6 +6337,7 @@ rx_DebugOnOff(int on) void rxi_DebugPrint(char *format, ...) { + va_list ap; #ifdef AFS_NT40_ENV char msg[512]; char tformat[256]; @@ -6357,7 +6358,6 @@ rxi_DebugPrint(char *format, ...) va_end(ap); #else struct clock now; - va_list ap; va_start(ap, format);