diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2010-04-09 09:55:14 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2010-04-09 09:55:14 +0100 |
commit | 82d235266bb164894800f877aba0c55e3aa9b98d (patch) | |
tree | fb7a094acde9cdcd29e9bef1fc9d553c96d20bce /gst-libs | |
parent | d198cb485db54dd86c7b076c5dd86ab8dac45237 (diff) |
i18n: #if ENABLE_NLS -> #ifdef ENABLE_NLS to fix compiler warning
Diffstat (limited to 'gst-libs')
-rw-r--r-- | gst-libs/gst/gettext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/gettext.h b/gst-libs/gst/gettext.h index 8b262f4c..59902b35 100644 --- a/gst-libs/gst/gettext.h +++ b/gst-libs/gst/gettext.h @@ -20,7 +20,7 @@ #define _LIBGETTEXT_H 1 /* NLS can be disabled through the configure --disable-nls option. */ -#if ENABLE_NLS +#ifdef ENABLE_NLS /* Get declarations of GNU message catalog functions. */ # include <libintl.h> |