Skip to content

Commit 7639ed9

Browse files
committed
Revert changing os_file_handle to int on Zephyr
Signed-off-by: Krisztian Szilvasi <[email protected]>
1 parent 7537d86 commit 7639ed9

File tree

1 file changed

+1
-1
lines changed
  • core/iwasm/libraries/libc-wasi/sandboxed-system-primitives/src

1 file changed

+1
-1
lines changed

core/iwasm/libraries/libc-wasi/sandboxed-system-primitives/src/posix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2213,7 +2213,7 @@ wasmtime_ssp_poll_oneoff(wasm_exec_env_t exec_env, struct fd_table *curfds,
22132213

22142214
// Temporary workaround (see PR#4377)
22152215
#ifdef BH_PLATFORM_ZEPHYR
2216-
int tfd = fos[i]->file_handle->fd;
2216+
os_file_handle tfd = fos[i]->file_handle->fd;
22172217
#else
22182218
os_file_handle tfd = fos[i]->file_handle;
22192219
#endif

0 commit comments

Comments
 (0)