fix: add (void) to GetFileMappingList method

close: #I3XPXY

Signed-off-by: mucor <mucorwang@gmail.com>
This commit is contained in:
mucor 2021-06-24 20:12:45 +08:00
parent a28dcc38c9
commit 56b8ecaf17
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