diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-10-13 14:14:50 +0200 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2018-10-13 14:14:50 +0200 |
commit | 902d39a3a79c6efe93c8879575fdd5a759cf03de (patch) | |
tree | e6ec0af8ac4333de34f581c2c7b5a2eb93e635a1 /ext/zlib/zlib.c | |
parent | 581f0141b6dd8d20e71612f90b01507ed0783db8 (diff) | |
download | php-git-902d39a3a79c6efe93c8879575fdd5a759cf03de.tar.gz |
Trim trailing whitespace in source code files
Diffstat (limited to 'ext/zlib/zlib.c')
-rw-r--r-- | ext/zlib/zlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 67e1116378..fde9f02ffa 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -936,7 +936,7 @@ PHP_FUNCTION(inflate_add) "flush mode must be ZLIB_NO_FLUSH, ZLIB_PARTIAL_FLUSH, ZLIB_SYNC_FLUSH, ZLIB_FULL_FLUSH, ZLIB_BLOCK or ZLIB_FINISH"); RETURN_FALSE; } - + /* Lazy-resetting the zlib stream so ctx->total_in remains available until the next inflate_add() call. */ if (((php_zlib_context *) ctx)->status == Z_STREAM_END) { @@ -1036,7 +1036,7 @@ PHP_FUNCTION(inflate_get_status) php_error_docref(NULL, E_WARNING, "Invalid zlib.inflate resource"); RETURN_FALSE; } - + RETURN_LONG(((php_zlib_context *) ctx)->status); } /* }}} */ |