summaryrefslogtreecommitdiff
path: root/src/win32.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/win32.cpp')
-rw-r--r--src/win32.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/win32.cpp b/src/win32.cpp
index eff7b6046..5081cff98 100644
--- a/src/win32.cpp
+++ b/src/win32.cpp
@@ -460,8 +460,8 @@ static HANDLE _file_crash_log;
static void GamelogPrintCrashLogProc(const char *s)
{
DWORD num_written;
- WriteFile(_file_crash_log, s, strlen(s), &num_written, NULL);
- WriteFile(_file_crash_log, "\r\n", strlen("\r\n"), &num_written, NULL);
+ WriteFile(_file_crash_log, s, (DWORD)strlen(s), &num_written, NULL);
+ WriteFile(_file_crash_log, "\r\n", (DWORD)strlen("\r\n"), &num_written, NULL);
}
static LONG WINAPI ExceptionHandler(EXCEPTION_POINTERS *ep)