projects
/
profile
/
ivi
/
syslinux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
48d026f
)
sysdump: quiet gcc warning
author
H. Peter Anvin
<hpa@zytor.com>
Mon, 8 Feb 2010 22:37:20 +0000
(14:37 -0800)
committer
H. 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
patch
|
blob
|
history
diff --git
a/com32/sysdump/zout.c
b/com32/sysdump/zout.c
index
0334d80
..
ece934c
100644
(file)
--- 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;