From d8d6eeb89a729bff78eb5f7688f37d375e3a532a Mon Sep 17 00:00:00 2001 From: Chris Moeller Date: Wed, 22 Oct 2014 19:03:10 -0700 Subject: [PATCH] Fixed FLAC assert.h with an absolute path that should work across system reinstalls --- Frameworks/FLAC/flac-1.2.1/include/FLAC/assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frameworks/FLAC/flac-1.2.1/include/FLAC/assert.h b/Frameworks/FLAC/flac-1.2.1/include/FLAC/assert.h index 78a436a7d..bd17ad0fe 100644 --- a/Frameworks/FLAC/flac-1.2.1/include/FLAC/assert.h +++ b/Frameworks/FLAC/flac-1.2.1/include/FLAC/assert.h @@ -34,7 +34,7 @@ /* we need this since some compilers (like MSVC) leave assert()s on release code (and we don't want to use their ASSERT) */ #ifdef DEBUG -#include +#include #define FLAC__ASSERT(x) assert(x) #define FLAC__ASSERT_DECLARATION(x) x #else