summaryrefslogtreecommitdiff
path: root/src/utilcode
diff options
context:
space:
mode:
authorPat Gavlin <pgavlin@gmail.com>2016-03-07 16:57:36 -0800
committerPat Gavlin <pgavlin@gmail.com>2016-03-07 16:57:36 -0800
commit968361f43e7ced74d89c09535cac114889cdb39d (patch)
treef77a7f81a6aa97c54ce710b0d9d1e55cd40483e9 /src/utilcode
parentc2c6bcd61bc729223448f6422d571d274d65a043 (diff)
parentcc90f62e4b4f45e6b9b3e9ee2251df32fad9f2f0 (diff)
downloadcoreclr-968361f43e7ced74d89c09535cac114889cdb39d.tar.gz
coreclr-968361f43e7ced74d89c09535cac114889cdb39d.tar.bz2
coreclr-968361f43e7ced74d89c09535cac114889cdb39d.zip
Merge pull request #3553 from dotnet-bot/from-tfs
Merge changes from TFS
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);