Cleanup: add missing newline
[babeltrace.git] / formats / bt-dummy / bt-dummy.c
index e0a10c90d61c0767a390e7c94c4f045ca0db1278..94edc3be83742ec82b672f157f8678df1670f446 100644 (file)
@@ -20,7 +20,6 @@
 #include <babeltrace/format.h>
 #include <babeltrace/babeltrace-internal.h>
 #include <inttypes.h>
-#include <uuid/uuid.h>
 #include <sys/mman.h>
 #include <errno.h>
 #include <sys/types.h>
@@ -32,7 +31,7 @@
 #include <stdlib.h>
 
 static
-int bt_dummy_write_event(struct stream_pos *ppos, struct ctf_stream *stream)
+int bt_dummy_write_event(struct stream_pos *ppos, struct ctf_stream_definition *stream)
 {
        return 0;
 }
@@ -75,4 +74,8 @@ void __attribute__((constructor)) bt_dummy_init(void)
        assert(!ret);
 }
 
-/* TODO: finalize */
+static
+void __attribute__((destructor)) bt_dummy_exit(void)
+{
+       bt_unregister_format(&bt_dummy_format);
+}
This page took 0.036924 seconds and 4 git commands to generate.