diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-02-08 14:37:20 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-02-08 14:37:20 -0800 |
commit | 5e39156723ddea8c3df99a3c4effad28acfb2acd (patch) | |
tree | 2f4e3ba3df0e7112b76de22f6432b265f4a12f65 | |
parent | 48d026fb89dee478f8e3a580b5298594331cc890 (diff) | |
download | syslinux.git-5e39156723ddea8c3df99a3c4effad28acfb2acd.tar.gz syslinux.git-5e39156723ddea8c3df99a3c4effad28acfb2acd.tar.xz syslinux.git-5e39156723ddea8c3df99a3c4effad28acfb2acd.zip |
sysdump: quiet gcc warning
Null change to quiet a gcc warning.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r-- | 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 0334d80a..ece934cc 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; |