Revert changing os_file_handle to int on Zephyr

Signed-off-by: Krisztian Szilvasi <34309983+kr-t@users.noreply.github.com>
This commit is contained in:
Krisztian Szilvasi 2025-10-06 12:49:14 +02:00
parent fe129f97b9
commit 81c0e0fc64
No known key found for this signature in database

View File

@ -2213,7 +2213,7 @@ wasmtime_ssp_poll_oneoff(wasm_exec_env_t exec_env, struct fd_table *curfds,
// Temporary workaround (see PR#4377)
#ifdef BH_PLATFORM_ZEPHYR
int tfd = fos[i]->file_handle->fd;
os_file_handle tfd = fos[i]->file_handle->fd;
#else
os_file_handle tfd = fos[i]->file_handle;
#endif