projects
/
nfs-utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d03090b
)
Removed the initialization of args2 in xlog_backend. It
author
Steve Dickson
<steved@redhat.com>
Fri, 6 Jun 2008 21:27:23 +0000
(17:27 -0400)
committer
Steve Dickson
<steved@redhat.com>
Fri, 6 Jun 2008 21:27:23 +0000
(17:27 -0400)
caused a compilation error on x86_64 archs.
Signed-off-by: Steve Dickson <steved@redhat.com>
support/nfs/xlog.c
patch
|
blob
|
history
diff --git
a/support/nfs/xlog.c
b/support/nfs/xlog.c
index 5ac9ba0e6a4d0657d2d9f9440319522921363cf6..6820346494862775d8108bd5a49e19ed303ca0db 100644
(file)
--- a/
support/nfs/xlog.c
+++ b/
support/nfs/xlog.c
@@
-133,7
+133,7
@@
xlog_enabled(int fac)
void
xlog_backend(int kind, const char *fmt, va_list args)
{
- va_list args2
= NULL
;
+ va_list args2;
if (!(kind & (L_ALL)) && !(logging && (kind & logmask)))
return;