Skip to content
Snippets Groups Projects
Commit f60879e2 authored by Damien George's avatar Damien George Committed by Mo Krautwald
Browse files

mpy-cross/main: Fix return type of mp_import_stat.


Fixes issue #10951.

Signed-off-by: default avatarDamien George <damien@micropython.org>
parent dc7d3f53
No related branches found
No related tags found
No related merge requests found
...@@ -339,7 +339,7 @@ int main(int argc, char **argv) { ...@@ -339,7 +339,7 @@ int main(int argc, char **argv) {
return main_(argc, argv); return main_(argc, argv);
} }
uint mp_import_stat(const char *path) { mp_import_stat_t mp_import_stat(const char *path) {
(void)path; (void)path;
return MP_IMPORT_STAT_NO_EXIST; return MP_IMPORT_STAT_NO_EXIST;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment