git://git.openafs.org
/
openafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
97176bc
)
rx-vaargs-20081003
author
Jeffrey Altman
<jaltman@secure-endpoints.com>
Fri, 3 Oct 2008 15:31:59 +0000 (15:31 +0000)
committer
Jeffrey Altman
<jaltman@secure-endpoints.com>
Fri, 3 Oct 2008 15:31:59 +0000 (15:31 +0000)
LICENSE MIT
define va_list ap where it will be defined on all platforms
src/rx/rx.c
patch
|
blob
|
history
diff --git
a/src/rx/rx.c
b/src/rx/rx.c
index
6163c44
..
8647a47
100644
(file)
--- 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);