From: Tom Hacohen Date: Fri, 27 Sep 2013 15:44:00 +0000 (+0100) Subject: Eo tests: Fixed wrong prototype in one of the tests in the suite. X-Git-Tag: submit/devel/efl/20131029.075644~169 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1e5fb7cf81a87d5051a31a20961d9c355c2fd8f;p=platform%2Fupstream%2Fefl.git Eo tests: Fixed wrong prototype in one of the tests in the suite. --- 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"); }