diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2015-12-04 14:03:24 +0000 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2015-12-04 14:06:41 +0000 |
commit | d566382a98bc1f6cbc8b93ca7eb9136d2363e5b0 (patch) | |
tree | a01361ed6e284ae5c9212a59e109fa094786697e /src/util | |
parent | efaac624afb2c5d74230dbec3dc358f1d50bc806 (diff) |
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 <emil.l.velikov@gmail.com>
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/u_atomic_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/u_atomic_test.c b/src/util/u_atomic_test.c index 7844f61622..7a77768c96 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 |