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 /examples/c/decode/file | |
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 'examples/c/decode/file')
-rw-r--r-- | examples/c/decode/file/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/c/decode/file/main.c b/examples/c/decode/file/main.c index 60e6cd91..4183a5fb 100644 --- a/examples/c/decode/file/main.c +++ b/examples/c/decode/file/main.c @@ -25,7 +25,7 @@ * http://flac.sourceforge.net/api/ */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include <config.h> #endif |