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

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

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

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

re #I5O3LH

Signed-off-by: yinjiaming <yinjiaming@huawei.com>
Change-Id: I6d3ce9efbe9afe14b1e9dd12538b80e69928fd71
This commit is contained in:
yinjiaming 2022-09-09 15:28:22 +08:00
parent 71e51d8813
commit 5541965365
1 changed files with 4 additions and 1 deletions

View File

@ -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)
{