From 6f2097e24b87e487db7f6a340ec9939845df407f Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Tue, 23 Feb 2016 19:47:49 -0500 Subject: [PATCH] test_ctf_ir_ref.c: fix coding style MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- tests/lib/test_ctf_ir_ref.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lib/test_ctf_ir_ref.c b/tests/lib/test_ctf_ir_ref.c index 36ba4156..d30195c8 100644 --- a/tests/lib/test_ctf_ir_ref.c +++ b/tests/lib/test_ctf_ir_ref.c @@ -565,13 +565,13 @@ static void test_put_order_put_objects(size_t *array, size_t size) { size_t i; struct user user = { 0 }; - void** objects = (void *) &user; + void **objects = (void *) &user; create_user_full(&user); printf("# "); for (i = 0; i < size; ++i) { - void* obj = objects[array[i]]; + void *obj = objects[array[i]]; printf("%s", user_names[array[i]]); BT_PUT(obj); -- 2.34.1