Subject: | useless #ifdef should be #if |
In gettext.xs, ANY_MISSING is always defined but has value 0 or 1.
#ifdef ANY_MISSING should be #if ANY_MISSING in order to define not_here only when needed.
--- gettext.xs~ 2005-05-31 15:56:41.906968608 -0400
+++ gettext.xs 2005-05-31 16:06:15.667743712 -0400
@@ -51,7 +51,7 @@
#define ANY_MISSING 1
#endif
-#ifdef ANY_MISSING
+#if ANY_MISSING
static int
not_here(char *s)
{