Force usage of assert() condition when NDEBUG is defined
[lttng-tools.git] / src / bin / lttng-sessiond / thread.c
index ae7f45fd97f8257b645d37513e80c3274410d938..a4e3cb86e125f7b3e365a80a27a82e2f610e2323 100644 (file)
@@ -134,7 +134,7 @@ void lttng_thread_put(struct lttng_thread *thread)
        if (!thread) {
                return;
        }
-       assert(thread->ref.refcount);
+       LTTNG_ASSERT(thread->ref.refcount);
        urcu_ref_put(&thread->ref, lttng_thread_release);
 }
 
This page took 0.024491 seconds and 4 git commands to generate.