From 5f3f9b3dbc4a41daba0eb310eb02f1d3062749f6 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Sun, 2 Jun 2013 14:34:25 +0200 Subject: libintl.h: fix for case where __GNUC__ is undefined --- include/libintl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') 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" -- cgit v1.2.1