From: Lars Hjemli Date: Fri, 20 Oct 2006 21:24:32 +0000 (+0200) Subject: Fix typo in show-index.c X-Git-Tag: v1.4.3.1^0 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0b92f1a9d213644d2cd6c1870091c090a6b7eca9;p=git.git Fix typo in show-index.c Signed-off-by: Lars Hjemli Signed-off-by: Junio C Hamano --- diff --git a/show-index.c b/show-index.c index c21d660b6..a30a2de5d 100644 --- a/show-index.c +++ b/show-index.c @@ -8,7 +8,7 @@ int main(int argc, char **argv) static unsigned int top_index[256]; if (fread(top_index, sizeof(top_index), 1, stdin) != 1) - die("unable to read idex"); + die("unable to read index"); nr = 0; for (i = 0; i < 256; i++) { unsigned n = ntohl(top_index[i]);