From 5510dec187737a1f91f9f097032b217a0d581dd8 Mon Sep 17 00:00:00 2001 From: "yiyue.fang" Date: Wed, 10 Apr 2013 00:17:52 +0800 Subject: [PATCH] fixed a syntax error error: expected expression before 'void' error: too many arguments to function --- examples/kernel/semaphore_static.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/kernel/semaphore_static.c b/examples/kernel/semaphore_static.c index 5528b806fb..b64d5cef47 100644 --- a/examples/kernel/semaphore_static.c +++ b/examples/kernel/semaphore_static.c @@ -114,7 +114,7 @@ int _tc_semaphore_static(void) { /* 设置TestCase清理回调函数 */ tc_cleanup(_tc_cleanup); - semaphore_static_init(void); + semaphore_static_init(); /* 返回TestCase运行的最长时间 */ return 100; @@ -125,7 +125,7 @@ FINSH_FUNCTION_EXPORT(_tc_semaphore_static, a static semaphore example); /* 用户应用入口 */ int rt_application_init(void) { - semaphore_static_init(void); + semaphore_static_init(); return 0; } -- GitLab