From: Nicolas Pitre Date: Mon, 30 Oct 2006 02:33:22 +0000 (-0500) Subject: missing small substitution X-Git-Tag: v1.4.4-rc1~5^2~9 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=5ca807842fcb709757147df0044e8b4b2946ea22;p=git-core%2Fgit.git missing small substitution Signed-off-by: Nicolas Pitre Signed-off-by: Junio C Hamano --- diff --git a/fetch-clone.c b/fetch-clone.c index 96cdab43c..f629d8dac 100644 --- a/fetch-clone.c +++ b/fetch-clone.c @@ -46,7 +46,7 @@ static int get_pack(int xd[2], const char *me, int sideband, const char **argv) side_pid = setup_sideband(sideband, me, fd, xd); pid = fork(); if (pid < 0) - die("%s: unable to fork off git-unpack-objects", me); + die("%s: unable to fork off %s", me, argv[0]); if (!pid) { dup2(fd[0], 0); close(fd[0]);