summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorrofl0r <retnyg@gmx.net>2013-06-02 14:34:25 +0200
committerrofl0r <retnyg@gmx.net>2013-06-02 14:34:25 +0200
commit5f3f9b3dbc4a41daba0eb310eb02f1d3062749f6 (patch)
tree155deeabfefa5497d6f89bfbe6b121774b399dff /include
parent0310576481c4191367e74d2cc9056b435c278f06 (diff)
downloadgettext-tiny-5f3f9b3dbc4a41daba0eb310eb02f1d3062749f6.tar.gz
libintl.h: fix for case where __GNUC__ is undefined
Diffstat (limited to 'include')
-rw-r--r--include/libintl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libintl.h b/include/libintl.h
index 70c7c49..ce5f58e 100644
--- a/include/libintl.h
+++ b/include/libintl.h
@@ -42,7 +42,7 @@ char *bindtextdomain(const char *domainname, const char *dirname);
#undef DISABLE_NLS
#define DISABLE_NLS 1
-#if __GNUC__ > 3
+#if __GNUC__ +0 > 3
/* most ppl call bindtextdomain() without using its return value
thus we get tons of warnings about "statement with no effect" */
#pragma GCC diagnostic ignored "-Wunused-value"