From 5ff78eebd090d5c172437fe3c648e325e0c5a5a5 Mon Sep 17 00:00:00 2001 From: Xavier Roche Date: Sun, 4 May 2014 15:50:12 +0000 Subject: Fixed build. --- src/htsinthash.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/htsinthash.c b/src/htsinthash.c index 0e1d11c..32c8e1c 100644 --- a/src/htsinthash.c +++ b/src/htsinthash.c @@ -235,7 +235,8 @@ static char the_empty_string[1] = { 0 }; /* Logging */ static void inthash_log(const inthash hashtable, const char *format, ...) - HTS_PRINTF_FUN(2, 3) { + HTS_PRINTF_FUN(2, 3); +static void inthash_log(const inthash hashtable, const char *format, ...) { va_list args; inthash_assert(format != NULL); fprintf(stderr, "[%p] ", (void*) hashtable); @@ -247,7 +248,8 @@ static void inthash_log(const inthash hashtable, const char *format, ...) /* No logging (should be dropped by the compiler) */ static void inthash_nolog(const inthash hashtable, const char *format, ...) - HTS_PRINTF_FUN(2, 3) { + HTS_PRINTF_FUN(2, 3); +static void inthash_nolog(const inthash hashtable, const char *format, ...) { } static void inthash_log_stats(inthash hashtable) { -- cgit v1.2.3