diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-04 14:35:22 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-04 14:35:22 +0000 |
commit | 032be648850fc91b470aeb2fc31d71ce6a1cf845 (patch) | |
tree | 75e6024127ee171d4f95950fe4c7cb08f04e63dc | |
parent | b41e6dc3af673057f774ae3744a666f585e85132 (diff) |
Fix 2.
-rw-r--r-- | src/htsinthash.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/htsinthash.c b/src/htsinthash.c index 12ce6b1..0e1d11c 100644 --- a/src/htsinthash.c +++ b/src/htsinthash.c @@ -189,8 +189,6 @@ static void inthash_fail(const char* exp, const char* file, int line) { abort(); } #define inthash_assert(EXP) (void)( (EXP) || (inthash_fail(#EXP, __FILE__, __LINE__), 0) ) -#endif - /* Compiler-specific. */ #ifndef HTS_PRINTF_FUN #ifdef __GNUC__ @@ -206,6 +204,7 @@ static void inthash_fail(const char* exp, const char* file, int line) { #define HTS_INLINE #endif #endif +#endif /* Logging level. */ #if 0 |