]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
silence compiler warnings
authorMark Andrews <marka@isc.org>
Sat, 14 Sep 2013 09:34:41 +0000 (19:34 +1000)
committerMark Andrews <marka@isc.org>
Sat, 14 Sep 2013 09:34:41 +0000 (19:34 +1000)
unit/atf-src/atf-c/detail/sanity.h

index 0b4f3e4756ce389cfece383c6bda5d419d5d1256..161c6f0af74b3bea0e4ed9c834a04cf63a8361a0 100644 (file)
@@ -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) */