diff --git a/apps/shell/src/shcmd.c b/apps/shell/src/shcmd.c index 06845ac8..b91462db 100644 --- a/apps/shell/src/shcmd.c +++ b/apps/shell/src/shcmd.c @@ -456,17 +456,11 @@ unsigned int OsCmdKeyShift(const char *cmdKey, char *cmdOut, unsigned int size) int OsTabCompletion(char *cmdKey, unsigned int *len) { int count; - char *cmdMainStr = cmdKey; if ((cmdKey == NULL) || (len == NULL)) { return (int)SH_ERROR; } - /* cut left space */ - while (*cmdMainStr == 0x20) { - cmdMainStr++; - } - count = OsTabMatchFile(cmdKey, len); return count;