diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2005-02-27 17:08:18 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2005-02-27 17:08:18 +0000 |
commit | 036767451740555cc6a7b31b32d0fc5cdb4a899a (patch) | |
tree | 0ddbeeb396b245b71abe7d414435dc50590640e8 /ext/standard/image.c | |
parent | 8324d21955c312d7e5686e2753911f489490a9dd (diff) | |
download | php-git-036767451740555cc6a7b31b32d0fc5cdb4a899a.tar.gz |
Fixed compiler warnings.
Diffstat (limited to 'ext/standard/image.c')
-rw-r--r-- | ext/standard/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/image.c b/ext/standard/image.c index e80c594427..76e908dc2b 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -601,7 +601,7 @@ static struct gfxinfo *php_handle_jpc(php_stream * stream TSRMLS_DC) { struct gfxinfo *result = NULL; unsigned short dummy_short; - int dummy_int, highest_bit_depth, bit_depth; + int highest_bit_depth, bit_depth; unsigned char first_marker_id; unsigned int i; |