summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-03-16 20:12:58 +0000
committerMarcus Boerger <helly@php.net>2002-03-16 20:12:58 +0000
commitf24caf324496af6c4e6c6695017ebe8cd5e4c2f5 (patch)
tree61276ef8c373c756eb034e978ca22fb2474aaeb2 /ext
parentfe9cb020aefb7cbc25338ec00f68f31fff6964f0 (diff)
downloadphp-git-f24caf324496af6c4e6c6695017ebe8cd5e4c2f5.tar.gz
-formatting
Diffstat (limited to 'ext')
-rw-r--r--ext/standard/image.c5
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);
+ }
}
/* }}} */