From: Jakub Hrozek Date: Wed, 25 Feb 2015 08:09:35 +0000 (+0100) Subject: Fix function types in doxygen docs X-Git-Tag: cmocka-1.1.1~52 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=710400b8c71b97e97b85addaefead4489743c108;p=platform%2Fupstream%2Fcmocka.git Fix function types in doxygen docs Signed-off-by: Jakub Hrozek Reviewed-by: Andreas Schneider --- diff --git a/include/cmocka.h b/include/cmocka.h index 35100d0..797fbe2 100644 --- a/include/cmocka.h +++ b/include/cmocka.h @@ -1533,7 +1533,7 @@ static inline void _unit_test_dummy(void **state) { * return 0; * } * - * static void teardown(void **state) { + * static int teardown(void **state) { * free(*state); * * return 0; @@ -1601,7 +1601,7 @@ int cmocka_run_group_tests(const struct CMUnitTest group_tests[], * return 0; * } * - * static void teardown(void **state) { + * static int teardown(void **state) { * free(*state); * * return 0;