From 34629a552f27cdbe7c104a242049818a686d9621 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Sun, 14 Dec 2014 18:34:47 -0500 Subject: [PATCH] Cleanup: Misplaced end label in bt_ctf_stream_get_packet_context MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- formats/ctf/ir/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formats/ctf/ir/stream.c b/formats/ctf/ir/stream.c index ce909bf4..5cf7eab3 100644 --- a/formats/ctf/ir/stream.c +++ b/formats/ctf/ir/stream.c @@ -329,10 +329,10 @@ struct bt_ctf_field *bt_ctf_stream_get_packet_context( } packet_context = stream->packet_context; -end: if (packet_context) { bt_ctf_field_get(packet_context); } +end: return packet_context; } -- 2.34.1