From: Junio C Hamano Date: Tue, 10 May 2005 06:48:21 +0000 (-0700) Subject: Do not report size of the object that cannot be written in local-pull.c X-Git-Tag: v0.99~603^2~5 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=b4635be7c9e0855a29609d8171fc9ff27db573ee;p=git.git Do not report size of the object that cannot be written in local-pull.c Reporting st.st_size with %ld is simply wrong, as H Peter Anvin says. No other pull drivers report the failure with size anyway, so yank it out. This is a cop-out patch but should be good enough. Signed-off-by: Junio C Hamano --- diff --git a/local-pull.c b/local-pull.c index acfcbb69..3a342ab1 100644 --- a/local-pull.c +++ b/local-pull.c @@ -71,8 +71,7 @@ int fetch(unsigned char *sha1) munmap(map, st.st_size); close(ofd); if (status) - fprintf(stderr, "cannot write %s (%ld bytes)\n", - dest_filename, st.st_size); + fprintf(stderr, "cannot write %s\n", dest_filename); else pull_say("copy %s\n", hex); return status;