-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update micropython to version 1.19.1 / rev 8 via SR 1075027
https://build.opensuse.org/request/show/1075027 by user dirkmueller + dimstar_suse - add 32572439984e5640c6af46fbe7c27400c30112ce.patch
- Loading branch information
1 parent
f181ec4
commit 6d1103e
Showing
5 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
packages/m/micropython/32572439984e5640c6af46fbe7c27400c30112ce.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 32572439984e5640c6af46fbe7c27400c30112ce Mon Sep 17 00:00:00 2001 | ||
From: Damien George <damien@micropython.org> | ||
Date: Tue, 7 Mar 2023 14:46:22 +1100 | ||
Subject: [PATCH] mpy-cross/main: Fix return type of mp_import_stat. | ||
|
||
Fixes issue #10951. | ||
|
||
Signed-off-by: Damien George <damien@micropython.org> | ||
--- | ||
mpy-cross/main.c | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/mpy-cross/main.c b/mpy-cross/main.c | ||
index 13bb17b13dba..8a4dd5bcbed5 100644 | ||
--- a/mpy-cross/main.c | ||
+++ b/mpy-cross/main.c | ||
@@ -344,7 +344,7 @@ int main(int argc, char **argv) { | ||
return main_(argc, argv); | ||
} | ||
|
||
-uint mp_import_stat(const char *path) { | ||
+mp_import_stat_t mp_import_stat(const char *path) { | ||
(void)path; | ||
return MP_IMPORT_STAT_NO_EXIST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters