From: Steve Dickson Date: Fri, 6 Jun 2008 21:27:23 +0000 (-0400) Subject: Removed the initialization of args2 in xlog_backend. It X-Git-Tag: nfs-utils-1-1-3~37 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=c6acce67dce1cf89742a6bc4635c1eeda82e9591 Removed the initialization of args2 in xlog_backend. It caused a compilation error on x86_64 archs. Signed-off-by: Steve Dickson --- diff --git a/support/nfs/xlog.c b/support/nfs/xlog.c index 5ac9ba0..6820346 100644 --- 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;