summaryrefslogtreecommitdiff
path: root/src/utilcode
diff options
context:
space:
mode:
Diffstat (limited to 'src/utilcode')
-rw-r--r--src/utilcode/jithost.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utilcode/jithost.cpp b/src/utilcode/jithost.cpp
index 412cc47786..3174aa6188 100644
--- a/src/utilcode/jithost.cpp
+++ b/src/utilcode/jithost.cpp
@@ -41,7 +41,7 @@ int JitHost::getIntConfigValue(const wchar_t* name, int defaultValue)
WRAPPER_NO_CONTRACT;
// Translate JIT call into runtime configuration query
- CLRConfig::ConfigDWORDInfo info{ name, defaultValue, CLRConfig::REGUTIL_default };
+ CLRConfig::ConfigDWORDInfo info{ name, defaultValue, CLRConfig::EEConfig_default };
// Perform a CLRConfig look up on behalf of the JIT.
return CLRConfig::GetConfigValue(info);
@@ -52,7 +52,7 @@ const wchar_t* JitHost::getStringConfigValue(const wchar_t* name)
WRAPPER_NO_CONTRACT;
// Translate JIT call into runtime configuration query
- CLRConfig::ConfigStringInfo info{ name, CLRConfig::REGUTIL_default };
+ CLRConfig::ConfigStringInfo info{ name, CLRConfig::EEConfig_default };
// Perform a CLRConfig look up on behalf of the JIT.
return CLRConfig::GetConfigValue(info);