* ext/zlib/zlib.c: parenthesize macro arguments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3a0ec68109
commit
f6de1a3f00
@ -1,3 +1,7 @@
|
|||||||
|
Fri Jan 28 21:49:30 2011 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
* ext/zlib/zlib.c: parenthesize macro arguments.
|
||||||
|
|
||||||
Fri Jan 28 17:47:33 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
Fri Jan 28 17:47:33 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||||
|
|
||||||
* test/gdbm/test_gdbm.rb (TestGDBM2#test_writer_open_notexist):
|
* test/gdbm/test_gdbm.rb (TestGDBM2#test_writer_open_notexist):
|
||||||
|
@ -1787,7 +1787,7 @@ struct gzfile {
|
|||||||
#define GZFILE_FLAG_FOOTER_FINISHED (ZSTREAM_FLAG_UNUSED << 2)
|
#define GZFILE_FLAG_FOOTER_FINISHED (ZSTREAM_FLAG_UNUSED << 2)
|
||||||
|
|
||||||
#define GZFILE_IS_FINISHED(gz) \
|
#define GZFILE_IS_FINISHED(gz) \
|
||||||
(ZSTREAM_IS_FINISHED(&gz->z) && (gz)->z.buf_filled == 0)
|
(ZSTREAM_IS_FINISHED(&(gz)->z) && (gz)->z.buf_filled == 0)
|
||||||
|
|
||||||
#define GZFILE_READ_SIZE 2048
|
#define GZFILE_READ_SIZE 2048
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user