[libc] fix the compiling warning

This commit is contained in:
Bernard Xiong 2018-03-05 21:17:03 +08:00
parent 2be6176b57
commit f83eb41ef7
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ int libc_stdio_set_console(const char* device_name, int mode)
if (mode == O_RDWR) file_mode = "r+";
else if (mode == O_WRONLY) file_mode = "wb";
else if (mode == O_RDONLY) file_mode = "rb";
else file_mode = "rb";
fp = fopen(name, file_mode);
if (fp)