diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-21 23:48:31 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-21 23:48:31 -0800 |
commit | ebc12ce5bfcf6401c8fcc7e4935bc50142a65db4 (patch) | |
tree | 4bd8cf5c083d53b8213f6cdb1fa7312c09030e2b /receive-pack.c | |
parent | git-pack-redundant: speed and memory usage improvements (diff) | |
parent | \n usage in stderr output (diff) | |
download | tgif-ebc12ce5bfcf6401c8fcc7e4935bc50142a65db4.tar.xz |
Merge branch 'fixes'
Diffstat (limited to 'receive-pack.c')
-rw-r--r-- | receive-pack.c | 2 |
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); |