From d566382a98bc1f6cbc8b93ca7eb9136d2363e5b0 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Fri, 4 Dec 2015 14:03:24 +0000 Subject: [PATCH] util: fix comment typo Undefining the NDEBUG is relevant for release build, as they are the ones that set it. [Emil Velikov: split from previous patch] Signed-off-by: Emil Velikov --- src/util/u_atomic_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/u_atomic_test.c b/src/util/u_atomic_test.c index 7844f616222..7a77768c966 100644 --- a/src/util/u_atomic_test.c +++ b/src/util/u_atomic_test.c @@ -26,7 +26,7 @@ **************************************************************************/ -/* Force assertions, even on debug builds. */ +/* Force assertions, even on release builds. */ #undef NDEBUG -- 2.30.2