summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/modos.c
diff options
context:
space:
mode:
Diffstat (limited to 'stmhal/modos.c')
-rw-r--r--stmhal/modos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/modos.c b/stmhal/modos.c
index e8bbde8d90..6a21006983 100644
--- a/stmhal/modos.c
+++ b/stmhal/modos.c
@@ -104,7 +104,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_0(os_getcwd_obj, os_getcwd);
/// \function listdir([dir])
/// With no argument, list the current directory. Otherwise list the given directory.
-STATIC mp_obj_t os_listdir(uint n_args, const mp_obj_t *args) {
+STATIC mp_obj_t os_listdir(mp_uint_t n_args, const mp_obj_t *args) {
bool is_str_type = true;
const char *path;
if (n_args == 1) {