X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lib%2Fctf-writer%2Fwriter.c;fp=lib%2Fctf-writer%2Fwriter.c;h=c005993be3ffea9937f05f32d3880ea1fe6fc111;hb=c55a9f585da53ea54ac458155fac3cdec1779d47;hp=6c4bbded741cd8487a7d4aa8ea2a280d935c7596;hpb=69b772a4f25fc4512abc877662a8c19e404b452c;p=babeltrace.git diff --git a/lib/ctf-writer/writer.c b/lib/ctf-writer/writer.c index 6c4bbded..c005993b 100644 --- a/lib/ctf-writer/writer.c +++ b/lib/ctf-writer/writer.c @@ -217,7 +217,7 @@ struct bt_ctf_stream *bt_ctf_writer_create_stream(struct bt_ctf_writer *writer, { struct bt_ctf_stream *stream = NULL; int stream_class_count; - bool stream_class_found = false; + bt_bool stream_class_found = BT_FALSE; int i; if (!writer || !stream_class) { @@ -236,7 +236,7 @@ struct bt_ctf_stream *bt_ctf_writer_create_stream(struct bt_ctf_writer *writer, writer->trace, i); if (existing_stream_class == stream_class) { - stream_class_found = true; + stream_class_found = BT_TRUE; } BT_PUT(existing_stream_class);