From aff84daff3cd53da2e35aee6b72592b9880e61fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 22 Nov 2016 11:37:15 +0100 Subject: [PATCH] synthetic tests: renamed functions --- test/synthetic/functions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/synthetic/functions.c b/test/synthetic/functions.c index 1d58e40ff..e94082a46 100644 --- a/test/synthetic/functions.c +++ b/test/synthetic/functions.c @@ -10,8 +10,8 @@ void par_dependant(int x, int y) { TestData[y] = 0; // BUG } void call(int x) { - function_par_not_dependant(1000); - function_par_dependant(0, 1000); + par_not_dependant(1000); + par_dependant(0, 1000); } int getLargeIndex() { return 1000; }