diff --git a/components/shell/include/show.h b/components/shell/include/show.h index 7b05b8e9..6bb81f1b 100644 --- a/components/shell/include/show.h +++ b/components/shell/include/show.h @@ -43,7 +43,7 @@ extern "C" { #endif /* __cplusplus */ extern CHAR *OsShellGetWorkingDirtectory(VOID); -extern UINT32 OsShellInit(INT32 consoleId); +extern UINT32 OsShellInit(VOID); extern INT32 OsShellDeinit(INT32 consoleId); static inline void SetErrno(int errcode) diff --git a/components/shell/src/base/shmsg.c b/components/shell/src/base/shmsg.c index 2e3e7ca6..b53a6ac2 100755 --- a/components/shell/src/base/shmsg.c +++ b/components/shell/src/base/shmsg.c @@ -213,7 +213,7 @@ LITE_OS_SEC_TEXT_MINOR VOID ExecCmdline(const CHAR *cmdline) return; } - OsShellInit(0); + (VOID)OsShellInit(); /* strip out unnecessary characters */ ret = PreHandleCmdline(cmdline, &output, &outputlen); diff --git a/components/shell/src/base/show.c b/components/shell/src/base/show.c index b52bba13..c4952fab 100755 --- a/components/shell/src/base/show.c +++ b/components/shell/src/base/show.c @@ -46,7 +46,7 @@ STATIC UINT32 OsShellCmdInit(VOID) return OsShellSysCmdRegister(); } -UINT32 OsShellInit(INT32 consoleId) +UINT32 OsShellInit(VOID) { if (g_shellSourceFlag == FALSE) { UINT32 ret = OsShellCmdInit();