From e54fab7eb1bbd74bbfb8ed9f3422b90d8d54a2d1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Mon, 20 Oct 2014 16:00:34 -0400 Subject: [PATCH] Cleanup: Missing space after cast operator MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- formats/ctf/ir/event-types.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formats/ctf/ir/event-types.c b/formats/ctf/ir/event-types.c index 41ecb5bd..5e9b31fe 100644 --- a/formats/ctf/ir/event-types.c +++ b/formats/ctf/ir/event-types.c @@ -1713,7 +1713,7 @@ struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_signed( goto end; } - field_entry = g_ptr_array_index(variant->fields, (size_t)index); + field_entry = g_ptr_array_index(variant->fields, (size_t) index); type = field_entry->type; end: return type; -- 2.34.1