summaryrefslogtreecommitdiff
path: root/src/plugin_common
diff options
context:
space:
mode:
authorErik de Castro Lopo <erikd@mega-nerd.com>2014-03-23 21:59:46 +1100
committerErik de Castro Lopo <erikd@mega-nerd.com>2014-03-24 12:06:49 +1100
commit006b8356d5159792211a2477a46a5ea832a3c0ae (patch)
treef349a6e0d34f28b7abe0a31c612d1e864064f1ba /src/plugin_common
parent49d9d742e2f84295a0dca8ad9a88c94c9a57b95d (diff)
downloadflac-006b8356d5159792211a2477a46a5ea832a3c0ae.tar.gz
Fix all instances of '#if HAVE_CONFIG_H'.
Should be '#ifdef HAVE_CONFIG_H'. Closes: https://sourceforge.net/p/flac/bugs/410/
Diffstat (limited to 'src/plugin_common')
-rw-r--r--src/plugin_common/charset.c2
-rw-r--r--src/plugin_common/dither.c2
-rw-r--r--src/plugin_common/replaygain.c2
-rw-r--r--src/plugin_common/tags.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/plugin_common/charset.c b/src/plugin_common/charset.c
index 18f9b802..01e71f3c 100644
--- a/src/plugin_common/charset.c
+++ b/src/plugin_common/charset.c
@@ -21,7 +21,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#if HAVE_CONFIG_H
+#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/plugin_common/dither.c b/src/plugin_common/dither.c
index cea30cd5..23351996 100644
--- a/src/plugin_common/dither.c
+++ b/src/plugin_common/dither.c
@@ -21,7 +21,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#if HAVE_CONFIG_H
+#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/plugin_common/replaygain.c b/src/plugin_common/replaygain.c
index 3f6b5ef9..9d3c7678 100644
--- a/src/plugin_common/replaygain.c
+++ b/src/plugin_common/replaygain.c
@@ -18,7 +18,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#if HAVE_CONFIG_H
+#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/plugin_common/tags.c b/src/plugin_common/tags.c
index ac397b55..8b394f90 100644
--- a/src/plugin_common/tags.c
+++ b/src/plugin_common/tags.c
@@ -17,7 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#if HAVE_CONFIG_H
+#ifdef HAVE_CONFIG_H
# include <config.h>
#endif