From: Giuseppe Bilotta Date: Fri, 4 Dec 2015 14:03:24 +0000 (+0000) Subject: util: fix comment typo X-Git-Tag: upstream/17.1.0~14015 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d566382a98bc1f6cbc8b93ca7eb9136d2363e5b0;p=platform%2Fupstream%2Fmesa.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 7844f61..7a77768 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