From: Nguyễn Thái Ngọc Duy Date: Sun, 8 May 2016 09:48:01 +0000 (+0700) Subject: wrapper.c: use warning_errno() X-Git-Tag: v2.9.0-rc0~30^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1da045fb9db5db8f01eb5e7c6106880ca5274643;p=git wrapper.c: use warning_errno() Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- diff --git a/wrapper.c b/wrapper.c index 9afc1a021c..3df2fe0e5e 100644 --- a/wrapper.c +++ b/wrapper.c @@ -572,7 +572,7 @@ static int warn_if_unremovable(const char *op, const char *file, int rc) if (!rc || errno == ENOENT) return 0; err = errno; - warning("unable to %s %s: %s", op, file, strerror(errno)); + warning_errno("unable to %s %s", op, file); errno = err; return rc; } @@ -608,7 +608,7 @@ int remove_or_warn(unsigned int mode, const char *file) void warn_on_inaccessible(const char *path) { - warning(_("unable to access '%s': %s"), path, strerror(errno)); + warning_errno(_("unable to access '%s'"), path); } static int access_error_is_ok(int err, unsigned flag)