diff --git a/src/libFLAC/stream_decoder.c b/src/libFLAC/stream_decoder.c index 33be1e82..f4d2d39f 100644 --- a/src/libFLAC/stream_decoder.c +++ b/src/libFLAC/stream_decoder.c @@ -55,11 +55,13 @@ /* technically this should be in an "export.c" but this is convenient enough */ -#ifdef FLAC_API_SUPPORTS_OGG_FLAC -FLAC_API int FLAC_API_SUPPORTS_OGG_FLAC = FLAC__HAS_OGG ; +FLAC_API int FLAC_API_SUPPORTS_OGG_FLAC = +#if FLAC__HAS_OGG + 1 #else -FLAC_API int FLAC_API_SUPPORTS_OGG_FLAC = 0 ; + 0 #endif +; /***********************************************************************