mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
zlib.c: suppress warning
* ext/zlib/zlib.c (zstream_run): suppress unused-but-set-variable warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38048 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
578deb65b0
commit
ed0aa14fcc
1 changed files with 1 additions and 1 deletions
|
@ -1086,7 +1086,7 @@ loop:
|
|||
|
||||
if (z->stream.avail_in > 0) {
|
||||
zstream_append_input(z, z->stream.next_in, z->stream.avail_in);
|
||||
guard = Qnil; /* prevent tail call to make guard effective */
|
||||
RB_GC_GUARD(guard) = Qnil; /* prevent tail call to make guard effective */
|
||||
}
|
||||
|
||||
if (args.jump_state)
|
||||
|
|
Loading…
Reference in a new issue