diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 10:42:51 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 10:42:51 +0000 |
commit | bf0a201008671f81c107de72c026b1b84967561d (patch) | |
tree | af74820b70fa27929fe218c95822c20651b60637 /archival/libunarchive/check_header_gzip.c | |
parent | 5dd7ef0f37373e397a7160cb431a32ae57f9f7d9 (diff) |
style fixes
last xcalloc replaced by xzalloc
Diffstat (limited to 'archival/libunarchive/check_header_gzip.c')
-rw-r--r-- | archival/libunarchive/check_header_gzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/libunarchive/check_header_gzip.c b/archival/libunarchive/check_header_gzip.c index 3e42035b9..0cfa94454 100644 --- a/archival/libunarchive/check_header_gzip.c +++ b/archival/libunarchive/check_header_gzip.c @@ -43,13 +43,13 @@ void check_header_gzip(int src_fd) /* Discard original name if any */ if (header.formatted.flags & 0x08) { /* bit 3 set: original file name present */ - while(xread_char(src_fd) != 0); + while (xread_char(src_fd) != 0); } /* Discard file comment if any */ if (header.formatted.flags & 0x10) { /* bit 4 set: file comment present */ - while(xread_char(src_fd) != 0); + while (xread_char(src_fd) != 0); } /* Read the header checksum */ |