Replace all assert(false) and assert(0) with abort()
[babeltrace.git] / plugins / utils / muxer / muxer.c
index e0553423a927ead2e2d0cf6a13bd06e24e349b82..533ccfaa5f937b4a5341b4b66b8d84b8134caf1d 100644 (file)
@@ -41,6 +41,7 @@
 #include <glib.h>
 #include <stdbool.h>
 #include <assert.h>
+#include <stdlib.h>
 
 #define IGNORE_ABSOLUTE_PARAM_NAME     "ignore-absolute"
 
@@ -566,7 +567,7 @@ int get_notif_ts_ns(struct muxer_comp *muxer_comp,
                        notif, clock_class);
                break;
        default:
-               assert(false);
+               abort();
        }
 
        if (!clock_value) {
This page took 0.024482 seconds and 4 git commands to generate.