!364 GetFileMappingList函数实现未加void导致gcc编译报错

Merge pull request !364 from 野生毛霉君/master
This commit is contained in:
openharmony_ci 2021-06-24 12:47:37 +00:00 committed by Gitee
commit de6db86df3
1 changed files with 3 additions and 1 deletions

View File

@ -294,8 +294,10 @@ out:
return ret; return ret;
} }
struct file_map* GetFileMappingList() #ifdef LOSCFG_DEBUG_VERSION
struct file_map* GetFileMappingList(void)
{ {
return &g_file_mapping; return &g_file_mapping;
} }
#endif #endif
#endif