From ef702b4ef527673195b9400c7ce6cb96207cf485 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Thu, 14 Sep 2017 12:12:48 -0400 Subject: [PATCH] Cleanup: coding style mandates 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 --- lib/ctf-ir/fields.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ctf-ir/fields.c b/lib/ctf-ir/fields.c index 563cd9d6..05be90fe 100644 --- a/lib/ctf-ir/fields.c +++ b/lib/ctf-ir/fields.c @@ -492,7 +492,7 @@ int bt_ctf_field_sequence_set_length(struct bt_ctf_field *field, bt_put(sequence->length); } - sequence->elements = g_ptr_array_sized_new((size_t)sequence_length); + sequence->elements = g_ptr_array_sized_new((size_t) sequence_length); if (!sequence->elements) { BT_LOGE_STR("Failed to allocate a GPtrArray."); ret = -1; -- 2.34.1