summaryrefslogtreecommitdiff
path: root/receive-pack.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2005-12-22 18:14:31 -0800
committerLibravatar Junio C Hamano <junkio@cox.net>2005-12-22 18:14:31 -0800
commitc63da8d8e8c5b5078e59af15c1a41ff98ad61d59 (patch)
tree26958529f1ffcf1a257fe602c1d49664c46d8b64 /receive-pack.c
parentGIT 1.0.0b (diff)
parentsha1_to_hex: properly terminate the SHA1 (diff)
downloadtgif-c63da8d8e8c5b5078e59af15c1a41ff98ad61d59.tar.xz
GIT 1.0.3
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'receive-pack.c')
-rw-r--r--receive-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/receive-pack.c b/receive-pack.c
index cbe37e7239..92878ecac3 100644
--- a/receive-pack.c
+++ b/receive-pack.c
@@ -79,7 +79,7 @@ static int run_update_hook(const char *refname,
case -ERR_RUN_COMMAND_WAITPID_WRONG_PID:
die("waitpid is confused");
case -ERR_RUN_COMMAND_WAITPID_SIGNAL:
- fprintf(stderr, "%s died of signal", update_hook);
+ fprintf(stderr, "%s died of signal\n", update_hook);
return -1;
case -ERR_RUN_COMMAND_WAITPID_NOEXIT:
die("%s died strangely", update_hook);