sysdump: quiet gcc warning
authorH. Peter Anvin <hpa@zytor.com>
Mon, 8 Feb 2010 22:37:20 +0000 (14:37 -0800)
committerH. Peter Anvin <hpa@zytor.com>
Mon, 8 Feb 2010 22:37:20 +0000 (14:37 -0800)
Null change to quiet a gcc warning.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
com32/sysdump/zout.c

index 0334d80..ece934c 100644 (file)
@@ -20,7 +20,8 @@ int init_data(struct backend *be, const char *argv[])
 
     memset(&be->zstream, 0, sizeof be->zstream);
 
-    be->zstream.next_out  = be->outbuf = NULL;
+    be->zstream.next_out  = NULL;
+    be->outbuf = NULL;
     be->zstream.avail_out = be->alloc  = 0;
     be->dbytes = be->zbytes = 0;