X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=csum-file.c;h=4d50cc5ce18c24a1dc853d3050062b864fe0b943;hb=b48275998399561780af85d429da3caceeecd2fe;hp=2ddb12a0b70da87afe6fa8a33dce08c6c8ae7f71;hpb=3f3e2c26fa0325f4df952363f8f5046ca8158bb3;p=git.git diff --git a/csum-file.c b/csum-file.c index 2ddb12a0b..4d50cc5ce 100644 --- a/csum-file.c +++ b/csum-file.c @@ -26,7 +26,7 @@ static void flush(struct sha1file *f, void * buf, unsigned int count) } if (!ret) die("sha1 file '%s' write error. Out of diskspace", f->name); - die("sha1 file '%s' write error (%s)", f->name, strerror(errno)); + die_errno("sha1 file '%s' write error", f->name); } } @@ -55,8 +55,7 @@ int sha1close(struct sha1file *f, unsigned char *result, unsigned int flags) if (flags & CSUM_FSYNC) fsync_or_die(f->fd, f->name); if (close(f->fd)) - die("%s: sha1 file error on close (%s)", - f->name, strerror(errno)); + die_errno("%s: sha1 file error on close", f->name); fd = 0; } else fd = f->fd;