diff options
author | Andi Gutmans <andi@php.net> | 2000-06-18 20:09:17 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-06-18 20:09:17 +0000 |
commit | baadf90fb56dc743d6ed7cd10555cb321de32e98 (patch) | |
tree | d9a135b545194a0d8c851b05ece795bffe1d1547 | |
parent | c3cc31c74564a93b941088ab2a2dc2cca33bdf5b (diff) | |
download | php-git-baadf90fb56dc743d6ed7cd10555cb321de32e98.tar.gz |
- Nuke warning
-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 ea11afebc3..4a2cf5dc92 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -110,7 +110,7 @@ static unsigned long int php_swf_get_bits (unsigned char* buffer, int pos, int c static struct gfxinfo *php_handle_swf (FILE* fp) { struct gfxinfo *result = NULL; - unsigned char bits; + long bits; unsigned char a[32]; result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); |