diff options
author | Erik de Castro Lopo <erikd@mega-nerd.com> | 2014-03-23 21:59:46 +1100 |
---|---|---|
committer | Erik de Castro Lopo <erikd@mega-nerd.com> | 2014-03-24 12:06:49 +1100 |
commit | 006b8356d5159792211a2477a46a5ea832a3c0ae (patch) | |
tree | f349a6e0d34f28b7abe0a31c612d1e864064f1ba /src/test_libFLAC/bitwriter.c | |
parent | 49d9d742e2f84295a0dca8ad9a88c94c9a57b95d (diff) | |
download | flac-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/test_libFLAC/bitwriter.c')
-rw-r--r-- | src/test_libFLAC/bitwriter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_libFLAC/bitwriter.c b/src/test_libFLAC/bitwriter.c index fb6b9996..76494d4a 100644 --- a/src/test_libFLAC/bitwriter.c +++ b/src/test_libFLAC/bitwriter.c @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include <config.h> #endif |