summaryrefslogtreecommitdiff
path: root/firmware/target/hosted
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted')
-rw-r--r--firmware/target/hosted/filesystem-win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/hosted/filesystem-win32.c b/firmware/target/hosted/filesystem-win32.c
index fad9b16e36..be95134cc9 100644
--- a/firmware/target/hosted/filesystem-win32.c
+++ b/firmware/target/hosted/filesystem-win32.c
@@ -251,7 +251,7 @@ int os_opendirfd(const char *osdirname)
251 else 251 else
252 { 252 {
253 /* Convert OS handle to fd; the fd now owns it */ 253 /* Convert OS handle to fd; the fd now owns it */
254 int osfd = _open_osfhandle((long)h, O_RDONLY); 254 int osfd = _open_osfhandle((intptr_t)h, O_RDONLY);
255 if (osfd >= 0) 255 if (osfd >= 0)
256 return osfd; 256 return osfd;
257 } 257 }