提交 55419653 编写于 作者: Y yinjiaming

fix: 修复测试用例中函数返回值的问题

【背景】
测试用例中有函数的返回值不正确

【修改方案】
将返回值为VOID *的函数的返回值改为
retrun NULL

【影响】
对现有的产品编译不会有影响。

re #I5O3LH
Signed-off-by: Nyinjiaming <yinjiaming@huawei.com>
Change-Id: I6d3ce9efbe9afe14b1e9dd12538b80e69928fd71
上级 71e51d88
......@@ -30,7 +30,10 @@
*/
#include "it_pthread_test.h"
static VOID *PthreadTest115(VOID *arg) {}
static VOID *PthreadTest115(VOID *arg)
{
return NULL;
}
static int GroupProcess(void)
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册