summaryrefslogtreecommitdiff
path: root/combine-diff.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2016-05-08 09:47:36 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-05-09 19:29:08 (GMT)
commit4b94ec9b200e9bafc5fd2c9c4e8b7e7934d60c00 (patch)
tree3e81c653d1d65486e252305cf3db6f82258c8fdd /combine-diff.c
parenteb031a580163b396ff0e4ee0f219758b517380d5 (diff)
downloadgit-4b94ec9b200e9bafc5fd2c9c4e8b7e7934d60c00.zip
git-4b94ec9b200e9bafc5fd2c9c4e8b7e7934d60c00.tar.gz
git-4b94ec9b200e9bafc5fd2c9c4e8b7e7934d60c00.tar.bz2
combine-diff.c: use error_errno()
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'combine-diff.c')
-rw-r--r--combine-diff.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/combine-diff.c b/combine-diff.c
index 0e1d4b0..8f2313d 100644
--- a/combine-diff.c
+++ b/combine-diff.c
@@ -1005,8 +1005,7 @@ static void show_patch_diff(struct combine_diff_path *elem, int num_parent,
struct strbuf buf = STRBUF_INIT;
if (strbuf_readlink(&buf, elem->path, st.st_size) < 0) {
- error("readlink(%s): %s", elem->path,
- strerror(errno));
+ error_errno("readlink(%s)", elem->path);
return;
}
result_size = buf.len;