Skip to content

Commit 3257243

Browse files
committed
mpy-cross/main: Fix return type of mp_import_stat.
Fixes issue micropython#10951. Signed-off-by: Damien George <[email protected]>
1 parent 7a817a3 commit 3257243

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mpy-cross/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ int main(int argc, char **argv) {
344344
return main_(argc, argv);
345345
}
346346

347-
uint mp_import_stat(const char *path) {
347+
mp_import_stat_t mp_import_stat(const char *path) {
348348
(void)path;
349349
return MP_IMPORT_STAT_NO_EXIST;
350350
}

0 commit comments

Comments
 (0)