stmhal/moduos: getcwd(): Use mp_obj_new_exception_arg1().

Argument types were converted, but old function call of
mp_obj_new_exception_msg_varg() remained.
modlwip-pbuf-chain
Paul Sokolovsky 2016-05-29 20:02:16 +03:00
parent 12401f337e
commit 2503b59592
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ STATIC mp_obj_t os_getcwd(void) {
FRESULT res = f_getcwd(buf, sizeof buf);
if (res != FR_OK) {
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_OSError, MP_OBJ_NEW_SMALL_INT(fresult_to_errno_table[res])));
nlr_raise(mp_obj_new_exception_arg1(&mp_type_OSError, MP_OBJ_NEW_SMALL_INT(fresult_to_errno_table[res])));
}
return mp_obj_new_str(buf, strlen(buf), false);