[syslinux:master] sysdump: quiet gcc warning

syslinux-bot for H. Peter Anvin hpa at zytor.com
Mon Feb 8 14:42:13 PST 2010


Commit-ID:  5e39156723ddea8c3df99a3c4effad28acfb2acd
Gitweb:     http://syslinux.zytor.com/commit/5e39156723ddea8c3df99a3c4effad28acfb2acd
Author:     H. Peter Anvin <hpa at zytor.com>
AuthorDate: Mon, 8 Feb 2010 14:37:20 -0800
Committer:  H. Peter Anvin <hpa at zytor.com>
CommitDate: Mon, 8 Feb 2010 14:37:20 -0800

sysdump: quiet gcc warning

Null change to quiet a gcc warning.

Signed-off-by: H. Peter Anvin <hpa at zytor.com>


---
 com32/sysdump/zout.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/com32/sysdump/zout.c b/com32/sysdump/zout.c
index 0334d80..ece934c 100644
--- a/com32/sysdump/zout.c
+++ b/com32/sysdump/zout.c
@@ -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;
 



More information about the Syslinux-commits mailing list