From: Junio C Hamano Date: Sun, 15 May 2011 19:16:03 +0000 (-0700) Subject: sha1_file: typofix X-Git-Tag: v1.7.5.2~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ccf5ace0dcfab16dca3870076e81d6ad1e294955;p=thirdparty%2Fgit.git sha1_file: typofix The number zero is spelled "zero", not "zer0". Signed-off-by: Junio C Hamano --- diff --git a/sha1_file.c b/sha1_file.c index 889fe71830..ee06d99f26 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -1308,7 +1308,7 @@ static void *unpack_sha1_rest(z_stream *stream, void *buffer, unsigned long size /* * The above condition must be (bytes <= size), not * (bytes < size). In other words, even though we - * expect no more output and set avail_out to zer0, + * expect no more output and set avail_out to zero, * the input zlib stream may have bytes that express * "this concludes the stream", and we *do* want to * eat that input.