diff options
author | rsc <devnull@localhost> | 2006-04-01 19:24:03 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2006-04-01 19:24:03 +0000 |
commit | cbeb0b26e4c7caa8d1b47de791a7418dc20a4567 (patch) | |
tree | e0f7e445de1aa22a42ef873dc4b1118a8105ae93 /src/libflate | |
parent | 226d80b8213821af0cbf092d1507c52b504fd368 (diff) | |
download | plan9port-cbeb0b26e4c7caa8d1b47de791a7418dc20a4567.tar.gz plan9port-cbeb0b26e4c7caa8d1b47de791a7418dc20a4567.tar.bz2 plan9port-cbeb0b26e4c7caa8d1b47de791a7418dc20a4567.zip |
Use gcc -ansi -pedantic in 9c. Fix many non-C89-isms.
Diffstat (limited to 'src/libflate')
-rw-r--r-- | src/libflate/deflate.c | 2 | ||||
-rw-r--r-- | src/libflate/zlib.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libflate/deflate.c b/src/libflate/deflate.c index 6f01778f..3f5b69a6 100644 --- a/src/libflate/deflate.c +++ b/src/libflate/deflate.c @@ -67,7 +67,7 @@ enum EstLitBits = 8, EstLenBits = 4, - EstOffBits = 5, + EstOffBits = 5 }; /* diff --git a/src/libflate/zlib.h b/src/libflate/zlib.h index 9669d86a..da97c0c6 100644 --- a/src/libflate/zlib.h +++ b/src/libflate/zlib.h @@ -7,5 +7,5 @@ enum ZlibDeflate = 0x08, ZlibCInfo = 0xf0, /* mask of compression aux. info */ - ZlibWin32k = 0x70, /* 32k history window */ + ZlibWin32k = 0x70 /* 32k history window */ }; |