From 8915b7a70c0179a9edddda5c8c907a6d4b038c09 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Fri, 5 May 2017 15:29:52 -0400 Subject: [PATCH] plugins/ctf/fs-src/data-stream.c: fix text width MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- plugins/ctf/fs-src/data-stream.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/ctf/fs-src/data-stream.c b/plugins/ctf/fs-src/data-stream.c index 38843d7bd..016e3fc54 100644 --- a/plugins/ctf/fs-src/data-stream.c +++ b/plugins/ctf/fs-src/data-stream.c @@ -434,8 +434,8 @@ struct bt_notification_iterator_next_return ctf_fs_stream_next( goto translate_status; } - notif_iter_status = bt_ctf_notif_iter_get_next_notification(stream->notif_iter, - stream->cc_prio_map, &ret.notification); + notif_iter_status = bt_ctf_notif_iter_get_next_notification( + stream->notif_iter, stream->cc_prio_map, &ret.notification); if (notif_iter_status != BT_CTF_NOTIF_ITER_STATUS_OK && notif_iter_status != BT_CTF_NOTIF_ITER_STATUS_EOF) { goto translate_status; -- 2.34.1