diff options
Diffstat (limited to 'os/windows/posix.c')
-rw-r--r-- | os/windows/posix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/os/windows/posix.c b/os/windows/posix.c index 5b72beab..fd1d5582 100644 --- a/os/windows/posix.c +++ b/os/windows/posix.c @@ -35,6 +35,8 @@ HRESULT WINAPI StringCchPrintfA(char *pszDest, size_t cchDest, const char *pszFo int win_to_posix_error(DWORD winerr) { switch (winerr) { + case ERROR_SUCCESS: + return 0; case ERROR_FILE_NOT_FOUND: return ENOENT; case ERROR_PATH_NOT_FOUND: |