diff options
author | Marcus Boerger <helly@php.net> | 2002-03-16 20:12:58 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-03-16 20:12:58 +0000 |
commit | f24caf324496af6c4e6c6695017ebe8cd5e4c2f5 (patch) | |
tree | 61276ef8c373c756eb034e978ca22fb2474aaeb2 /ext | |
parent | fe9cb020aefb7cbc25338ec00f68f31fff6964f0 (diff) | |
download | php-git-f24caf324496af6c4e6c6695017ebe8cd5e4c2f5.tar.gz |
-formatting
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/image.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/standard/image.c b/ext/standard/image.c index 001803417a..9761fb1845 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -316,7 +316,10 @@ static void php_skip_variable(php_stream * stream) off_t length = ((unsigned int)php_read2(stream)); length = length-2; - if (length) php_stream_seek(stream, (long)length, SEEK_CUR); + if (length) + { + php_stream_seek(stream, (long)length, SEEK_CUR); + } } /* }}} */ |