From c6acce67dce1cf89742a6bc4635c1eeda82e9591 Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Fri, 6 Jun 2008 17:27:23 -0400 Subject: [PATCH] Removed the initialization of args2 in xlog_backend. It caused a compilation error on x86_64 archs. Signed-off-by: Steve Dickson --- support/nfs/xlog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2