From: Jérémie Galarneau Date: Mon, 20 Oct 2014 20:00:34 +0000 (-0400) Subject: Cleanup: Missing space after cast operator X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=e54fab7eb1bbd74bbfb8ed9f3422b90d8d54a2d1;p=deliverable%2Fbabeltrace.git Cleanup: Missing space after cast operator Signed-off-by: Jérémie Galarneau --- diff --git a/formats/ctf/ir/event-types.c b/formats/ctf/ir/event-types.c index 41ecb5bd8..5e9b31fe9 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;