Force usage of assert() condition when NDEBUG is defined
[lttng-tools.git] / src / bin / lttng-sessiond / utils.c
index e806082e324678c026a5e112ac7b2d3e28ccc272..6936a03f963de2d0d37a18040f39fbd32b99d2a1 100644 (file)
@@ -60,7 +60,7 @@ void ht_cleanup_push(struct lttng_ht *ht)
        /* All good. Don't send back the write positive ret value. */
        ret = 0;
 error:
-       assert(!ret);
+       LTTNG_ASSERT(!ret);
 }
 
 int loglevels_match(int a_loglevel_type, int a_loglevel_value,
This page took 0.023988 seconds and 4 git commands to generate.