diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-08-10 00:49:55 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-10 00:49:55 +0200 |
commit | 96cb27a9d2db3c01b8e296a0fbc1da1da09d1412 (patch) | |
tree | bd1025351e85a9d5f2d7776ada9404051d657475 | |
parent | Merge branch 'master' of git://github.com/git-l10n/git-po (diff) | |
parent | parse-options: fix clang opterror() -Wunused-value warning (diff) | |
download | git-96cb27a9d2db3c01b8e296a0fbc1da1da09d1412.tar.xz git-96cb27a9d2db3c01b8e296a0fbc1da1da09d1412.zip |
Merge branch 'maint'
* maint:
parse-options: fix clang opterror() -Wunused-value warning
-rw-r--r-- | parse-options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-options.h b/parse-options.h index c378b75b13..9b94596e4a 100644 --- a/parse-options.h +++ b/parse-options.h @@ -180,7 +180,7 @@ extern NORETURN void usage_msg_opt(const char *msg, extern int optbug(const struct option *opt, const char *reason); extern int opterror(const struct option *opt, const char *reason, int flags); -#if defined(__GNUC__) && ! defined(clang) +#if defined(__GNUC__) && ! defined(__clang__) #define opterror(o,r,f) (opterror((o),(r),(f)), -1) #endif |