summaryrefslogtreecommitdiffstats
path: root/support/nfs/xlog.c
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2008-06-06 17:27:23 -0400
committerSteve Dickson <steved@redhat.com>2008-06-06 17:27:23 -0400
commitc6acce67dce1cf89742a6bc4635c1eeda82e9591 (patch)
tree3e3388d99b05509d4a292064c8290809bd6f34cc /support/nfs/xlog.c
parentd03090be4f440d70328988e9f792f3bd0ebd956b (diff)
downloadnfs-utils-c6acce67dce1cf89742a6bc4635c1eeda82e9591.tar.gz
nfs-utils-c6acce67dce1cf89742a6bc4635c1eeda82e9591.tar.xz
nfs-utils-c6acce67dce1cf89742a6bc4635c1eeda82e9591.zip
Removed the initialization of args2 in xlog_backend. It
caused a compilation error on x86_64 archs. Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'support/nfs/xlog.c')
-rw-r--r--support/nfs/xlog.c2
1 files changed, 1 insertions, 1 deletions
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;