plugin-so.c: add comment about why we're not using a GLib linked list
[babeltrace.git] / src / ctfser / ctfser.h
index 5338353cde8deb62a31c1e68c4b473f254c5c75e..ac71eac87a67e95040febff7f61cf71e08e5450c 100644 (file)
@@ -28,6 +28,7 @@
  * http://www.efficios.com/ctf
  */
 
+#include <stdbool.h>
 #include <stdlib.h>
 #include <stdint.h>
 #include <limits.h>
@@ -250,7 +251,7 @@ int _bt_ctfser_write_byte_aligned_unsigned_int_no_align(
                break;
        }
        default:
-               abort();
+               bt_common_abort();
        }
 
        _bt_ctfser_incr_offset(ctfser, size_bits);
@@ -312,7 +313,7 @@ int _bt_ctfser_write_byte_aligned_signed_int_no_align(
                break;
        }
        default:
-               abort();
+               bt_common_abort();
        }
 
        _bt_ctfser_incr_offset(ctfser, size_bits);
This page took 0.025555 seconds and 4 git commands to generate.