summaryrefslogtreecommitdiff
path: root/git-compat-util.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-09-12 22:34:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-09-12 22:34:33 (GMT)
commit368332c471d28f8e301c61e47bbcb81f5ebbd8fd (patch)
treed6f921fa50eab8997f7f1854a8ec0cf45dacd60e /git-compat-util.h
parent8f6fd086e644cadd2976d471f65b5ebe11316924 (diff)
parent3e1952ed96dde926ce38a8ab8803f9a410ecdae3 (diff)
downloadgit-368332c471d28f8e301c61e47bbcb81f5ebbd8fd.zip
git-368332c471d28f8e301c61e47bbcb81f5ebbd8fd.tar.gz
git-368332c471d28f8e301c61e47bbcb81f5ebbd8fd.tar.bz2
Merge branch 'jk/squelch-false-warning-from-gcc-o3'
* jk/squelch-false-warning-from-gcc-o3: color_parse_mem: initialize "struct color" temporary error_errno: use constant return similar to error()
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index db89ba7..2ad45b3 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -436,6 +436,7 @@ static inline int const_error(void)
return -1;
}
#define error(...) (error(__VA_ARGS__), const_error())
+#define error_errno(...) (error_errno(__VA_ARGS__), const_error())
#endif
extern void set_die_routine(NORETURN_PTR void (*routine)(const char *err, va_list params));