From: Mark Andrews Date: Sat, 14 Sep 2013 09:34:41 +0000 (+1000) Subject: silence compiler warnings X-Git-Tag: v9.10.0a1~104 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=a0369bb59fe607f03dab88979df9c541d379ab74;p=thirdparty%2Fbind9.git silence compiler warnings --- diff --git a/unit/atf-src/atf-c/detail/sanity.h b/unit/atf-src/atf-c/detail/sanity.h index 0b4f3e4756c..161c6f0af74 100644 --- a/unit/atf-src/atf-c/detail/sanity.h +++ b/unit/atf-src/atf-c/detail/sanity.h @@ -56,14 +56,17 @@ void atf_sanity_post(const char *, int, const char *); #define INV(x) \ do { \ + (void)(x); \ } while (0) #define PRE(x) \ do { \ + (void)(x); \ } while (0) #define POST(x) \ do { \ + (void)(x); \ } while (0) #endif /* !defined(NDEBUG) */