4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 03:03:30 +08:00

Merge pull request #1799 from liruncong/dev0911

修正_sys_command_string返回值
This commit is contained in:
Bernard Xiong 2018-09-12 10:04:26 +08:00 committed by GitHub
commit 471d25ce49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -249,7 +249,7 @@ int _sys_tmpnam(char *name, int fileno, unsigned maxlength)
char *_sys_command_string(char *cmd, int len)
{
/* no support */
return cmd;
return RT_NULL;
}
/* This function writes a character to the console. */