diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2008-09-06 21:31:01 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2008-09-06 21:31:01 +0000 |
commit | a6860ce9649671afb837e80d3e21078f3a00eab6 (patch) | |
tree | 5482492b30a01aad03b8a9af471edbe23c197f19 | |
parent | 898ff10dc0f799ecf997cb3c64a96f2751884187 (diff) | |
download | php-git-a6860ce9649671afb837e80d3e21078f3a00eab6.tar.gz |
Removed unused variables
-rw-r--r-- | ext/fileinfo/libmagic/compress.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/fileinfo/libmagic/compress.c b/ext/fileinfo/libmagic/compress.c index b611637fd2..4e7c559825 100644 --- a/ext/fileinfo/libmagic/compress.c +++ b/ext/fileinfo/libmagic/compress.c @@ -84,8 +84,6 @@ private const struct { { "BZh", 3, { "bzip2", "-cd", NULL }, 1 }, /* bzip2-ed */ }; -private size_t ncompr = sizeof(compr) / sizeof(compr[0]); - #define NODATA ((size_t)~0) @@ -176,7 +174,7 @@ swrite(int fd, const void *buf, size_t n) protected ssize_t sread(int fd, void *buf, size_t n, int canbepipe) { - int rv, cnt; + int rv; #ifdef FIONREAD int t = 0; #endif |