Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-02-22 00:03:33 +0300
committerGitHub <noreply@github.com>2017-02-22 00:03:33 +0300
commitb3ddd42d4c205448c6d69152f1d405133cc54124 (patch)
tree55a83691ed842af18c640e5aae6f82464bb728c5 /src/Native/Runtime/windows
parentdf5aa9f8b561e8a72f771a29f5d4e28a00fe0c6e (diff)
Fix build break on UWP (#2786)
Diffstat (limited to 'src/Native/Runtime/windows')
-rw-r--r--src/Native/Runtime/windows/PalRedhawkMinWin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Native/Runtime/windows/PalRedhawkMinWin.cpp b/src/Native/Runtime/windows/PalRedhawkMinWin.cpp
index e20c7bd09..1e3705b71 100644
--- a/src/Native/Runtime/windows/PalRedhawkMinWin.cpp
+++ b/src/Native/Runtime/windows/PalRedhawkMinWin.cpp
@@ -439,7 +439,7 @@ REDHAWK_PALEXPORT void PalPrintFatalError(const char* message)
// Write the message using lowest-level OS API available. This is used to print the stack overflow
// message, so there is not much that can be done here.
DWORD dwBytesWritten;
- WriteFile(GetStdHandle(STD_ERROR_HANDLE), message, strlen(message), &dwBytesWritten, NULL);
+ WriteFile(GetStdHandle(STD_ERROR_HANDLE), message, (DWORD)strlen(message), &dwBytesWritten, NULL);
}
//