]> Devoid-pointer.net GitWeb - libHPCS.git/commitdiff
Fix "unused variable" warning in print_debug() in release configuration
authorMichal Malý <madcatxster@devoid-pointer.net>
Sun, 29 Jun 2014 21:30:27 +0000 (23:30 +0200)
committerMichal Malý <madcatxster@devoid-pointer.net>
Sun, 29 Jun 2014 21:30:27 +0000 (23:30 +0200)
libhpcs_p.h

index 09f4674b78741410b69da79b914f080a51a4de8d..852104279d3b601bf757ded5c99b6a0857c00045 100644 (file)
@@ -120,12 +120,12 @@ void reverse_endianness(char* bytes, size_t sz) {
 #error "Endiannes has not been determined."
 #endif
 
-#ifdef NDEBUG
 void print_debug(const char* msg)
 {
+#ifdef NDEBUG
        fprintf(stderr, "%s\n"m msg);
-}
 #else
-void print_debug(const char* msg) { return; }
+       (void)msg;
 #endif //NDEBUG
+}