From ca116246724bd6856b6291a00e304675bb166136 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Fri, 12 Dec 2014 09:35:46 -0500 Subject: [PATCH] Cleanup: Remove unnecessary argument name 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-fields.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/formats/ctf/ir/event-fields.c b/formats/ctf/ir/event-fields.c index bde69a22..f9288f2b 100644 --- a/formats/ctf/ir/event-fields.c +++ b/formats/ctf/ir/event-fields.c @@ -76,32 +76,32 @@ static void bt_ctf_field_string_destroy(struct bt_ctf_field *); static -int bt_ctf_field_generic_validate(struct bt_ctf_field *field); +int bt_ctf_field_generic_validate(struct bt_ctf_field *); static -int bt_ctf_field_structure_validate(struct bt_ctf_field *field); +int bt_ctf_field_structure_validate(struct bt_ctf_field *); static -int bt_ctf_field_variant_validate(struct bt_ctf_field *field); +int bt_ctf_field_variant_validate(struct bt_ctf_field *); static -int bt_ctf_field_enumeration_validate(struct bt_ctf_field *field); +int bt_ctf_field_enumeration_validate(struct bt_ctf_field *); static -int bt_ctf_field_array_validate(struct bt_ctf_field *field); +int bt_ctf_field_array_validate(struct bt_ctf_field *); static -int bt_ctf_field_sequence_validate(struct bt_ctf_field *field); +int bt_ctf_field_sequence_validate(struct bt_ctf_field *); static -int bt_ctf_field_generic_reset(struct bt_ctf_field *field); +int bt_ctf_field_generic_reset(struct bt_ctf_field *); static -int bt_ctf_field_structure_reset(struct bt_ctf_field *field); +int bt_ctf_field_structure_reset(struct bt_ctf_field *); static -int bt_ctf_field_variant_reset(struct bt_ctf_field *field); +int bt_ctf_field_variant_reset(struct bt_ctf_field *); static -int bt_ctf_field_enumeration_reset(struct bt_ctf_field *field); +int bt_ctf_field_enumeration_reset(struct bt_ctf_field *); static -int bt_ctf_field_array_reset(struct bt_ctf_field *field); +int bt_ctf_field_array_reset(struct bt_ctf_field *); static -int bt_ctf_field_sequence_reset(struct bt_ctf_field *field); +int bt_ctf_field_sequence_reset(struct bt_ctf_field *); static -int bt_ctf_field_string_reset(struct bt_ctf_field *field); +int bt_ctf_field_string_reset(struct bt_ctf_field *); static int bt_ctf_field_integer_serialize(struct bt_ctf_field *, -- 2.34.1