Skip to content

Commit

Permalink
Fix the case-sensitivity for __wasi__
Browse files Browse the repository at this point in the history
  • Loading branch information
brettcannon committed Nov 1, 2022
1 parent 921f4c5 commit 0aaed2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/marshal.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module marshal
*/
#if defined(MS_WINDOWS)
#define MAX_MARSHAL_STACK_DEPTH 1000
#elif defined(__WASI__)
#elif defined(__wasi__)
#define MAX_MARSHAL_STACK_DEPTH 1500
#else
#define MAX_MARSHAL_STACK_DEPTH 2000
Expand Down

0 comments on commit 0aaed2d

Please sign in to comment.