From: Johannes Schindelin Date: Tue, 29 Aug 2006 10:50:29 +0000 (+0200) Subject: unpack-objects: remove unused variable "eof" X-Git-Tag: v1.4.3-rc1~157 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c9b0597d3d3168e29f68b0e82fa755ee165f6b72;p=git.git unpack-objects: remove unused variable "eof" Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/builtin-unpack-objects.c b/builtin-unpack-objects.c index ca0ebc258..0c180b53a 100644 --- a/builtin-unpack-objects.c +++ b/builtin-unpack-objects.c @@ -15,7 +15,7 @@ static const char unpack_usage[] = "git-unpack-objects [-n] [-q] < pack-file"; /* We always read in 4kB chunks. */ static unsigned char buffer[4096]; -static unsigned long offset, len, eof; +static unsigned long offset, len; static SHA_CTX ctx; /* @@ -26,8 +26,6 @@ static void * fill(int min) { if (min <= len) return buffer + offset; - if (eof) - die("unable to fill input"); if (min > sizeof(buffer)) die("cannot fill %d bytes", min); if (offset) {