summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2016-11-29 21:58:07 +0900
committerJan Vorlicek <janvorli@microsoft.com>2016-11-29 13:58:07 +0100
commit6c870a3e37bead1aecf2fa898fcefbefd8e7543a (patch)
tree911f3fe8c9db9db125faf04103667e1ea3b4935f
parent31c5791b1c81800703655f7d306b030e3cde9bd2 (diff)
downloadcoreclr-6c870a3e37bead1aecf2fa898fcefbefd8e7543a.tar.gz
coreclr-6c870a3e37bead1aecf2fa898fcefbefd8e7543a.tar.bz2
coreclr-6c870a3e37bead1aecf2fa898fcefbefd8e7543a.zip
Uses 'W' to fix build error (#8345)
-rw-r--r--src/vm/codeman.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/codeman.cpp b/src/vm/codeman.cpp
index 45a978310f..cffe1912cd 100644
--- a/src/vm/codeman.cpp
+++ b/src/vm/codeman.cpp
@@ -1720,7 +1720,7 @@ BOOL EEJitManager::LoadJIT()
{
// Now, load the compat jit and initialize it.
- LPCWSTR pwzJitName = MAKEDLLNAME_W(L"compatjit");
+ LPCWSTR pwzJitName = MAKEDLLNAME_W(W("compatjit"));
// Note: if the compatjit fails to load, we ignore it, and continue to use the main JIT for
// everything. You can imagine a policy where if the user requests the compatjit, and we fail