From c1e5fb7cf81a87d5051a31a20961d9c355c2fd8f Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Fri, 27 Sep 2013 16:44:00 +0100 Subject: [PATCH] Eo tests: Fixed wrong prototype in one of the tests in the suite. --- src/tests/eo/suite/eo_test_general.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/eo/suite/eo_test_general.c b/src/tests/eo/suite/eo_test_general.c index b1bbdea..74e807b 100644 --- a/src/tests/eo/suite/eo_test_general.c +++ b/src/tests/eo/suite/eo_test_general.c @@ -738,7 +738,7 @@ _a_print(Eo *obj EINA_UNUSED, void *class_data EINA_UNUSED, va_list *list EINA_U } static void -_class_hi_print(const Eo_Class *klass EINA_UNUSED, va_list *list EINA_UNUSED) +_class_hi_print(Eo_Class *klass EINA_UNUSED, void *class_data EINA_UNUSED, va_list *list EINA_UNUSED) { printf("Hi\n"); } -- 2.7.4