From: Giuseppe Bilotta Date: Fri, 4 Dec 2015 14:03:24 +0000 (+0000) Subject: util: fix comment typo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d566382a98bc1f6cbc8b93ca7eb9136d2363e5b0;p=mesa.git 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 --- 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