Commit 278c0024 by Alan Mishchenko

Compiler warnings.

parent 39f32259
...@@ -1445,7 +1445,7 @@ long ZEXPORT inflateMark(z_streamp strm) ...@@ -1445,7 +1445,7 @@ long ZEXPORT inflateMark(z_streamp strm)
{ {
struct inflate_state FAR *state; struct inflate_state FAR *state;
if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16; if (strm == Z_NULL || strm->state == Z_NULL) return -(1L << 16);
state = (struct inflate_state FAR *)strm->state; state = (struct inflate_state FAR *)strm->state;
return ((long)(state->back) << 16) + return ((long)(state->back) << 16) +
(state->mode == COPY ? state->length : (state->mode == COPY ? state->length :
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment