X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=unpack-file.c;h=ac9cbf7cd8ed1367151de0e8b96668f498b7f1a1;hb=7da4e2280ccaf5ecb357f7cb2b81d62f78f00f9e;hp=75cd2f1a6adf3ea773a6acc3f1e7f122e30676e5;hpb=891182f9141326fd6833d3651b89860a0b41f153;p=git.git diff --git a/unpack-file.c b/unpack-file.c index 75cd2f1a6..ac9cbf7cd 100644 --- a/unpack-file.c +++ b/unpack-file.c @@ -17,7 +17,7 @@ static char *create_temp_file(unsigned char *sha1) strcpy(path, ".merge_file_XXXXXX"); fd = xmkstemp(path); if (write_in_full(fd, buf, size) != size) - die("unable to write temp-file"); + die_errno("unable to write temp-file"); close(fd); return path; }