]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
Removed the initialization of args2 in xlog_backend. It
authorSteve Dickson <steved@redhat.com>
Fri, 6 Jun 2008 21:27:23 +0000 (17:27 -0400)
committerSteve 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

index 5ac9ba0e6a4d0657d2d9f9440319522921363cf6..6820346494862775d8108bd5a49e19ed303ca0db 100644 (file)
@@ -133,7 +133,7 @@ xlog_enabled(int fac)
 void
 xlog_backend(int kind, const char *fmt, va_list args)
 {
 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;
 
        if (!(kind & (L_ALL)) && !(logging && (kind & logmask)))
                return;