Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2006-10-21 01:24:32 +0400
committerJunio C Hamano <junkio@cox.net>2006-10-21 03:50:36 +0400
commit0b92f1a9d213644d2cd6c1870091c090a6b7eca9 (patch)
tree7718a835e58ff9ab7d4ed241c258cf79a7c7c1da
parent96a035d1db9082d244867033020d0ceb571cf94e (diff)
Fix typo in show-index.cv1.4.3.1
Signed-off-by: Lars Hjemli <hjemli@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--show-index.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/show-index.c b/show-index.c
index c21d660b62..a30a2de5d1 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]);