diff options
author | Allan Caffee <allan.caffee@gmail.com> | 2009-02-24 20:22:20 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-25 00:49:53 -0800 |
commit | a8fdab08e09bf73cbc3159930af41cf3233be853 (patch) | |
tree | 5547b247c04d183811e874ab379885da7340f489 /trace.c | |
parent | 149f6ddfb324b677472192d4aa1ddc350cf49e80 (diff) | |
download | git-a8fdab08e09bf73cbc3159930af41cf3233be853.tar.gz |
trace: Fixed a minor typo in an error message.
Signed-off-by: Allan Caffee <allan.caffee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'trace.c')
-rw-r--r-- | trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ static int get_trace_fd(int *need_close) return fd; } - fprintf(stderr, "What does '%s' for GIT_TRACE means ?\n", trace); + fprintf(stderr, "What does '%s' for GIT_TRACE mean?\n", trace); fprintf(stderr, "If you want to trace into a file, " "then please set GIT_TRACE to an absolute pathname " "(starting with /).\n"); |