[PATCH 49/59] fixup! libctf, dedup: add new configure option --enable-libctf-hash-debugging

Nick Alcock nick.alcock@oracle.com
Wed Jul 22 09:30:00 GMT 2020


Add missing brackets to this preprocessor conditional.
---
 libctf/ctf-impl.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libctf/ctf-impl.h b/libctf/ctf-impl.h
index 06b98da2a9d..35320d46f66 100644
--- a/libctf/ctf-impl.h
+++ b/libctf/ctf-impl.h
@@ -71,7 +71,7 @@ extern "C"
 
 #endif
 
-#if defined ENABLE_LIBCTF_HASH_DEBUGGING && !defined (NDEBUG)
+#if defined (ENABLE_LIBCTF_HASH_DEBUGGING) && !defined (NDEBUG)
 #include <assert.h>
 #define ctf_assert(fp, expr) (assert (expr), 1)
 #else
-- 
2.27.0.247.g3dff7de930


More information about the Binutils mailing list