diff options
Diffstat (limited to 'src/burn')
-rw-r--r-- | src/burn/engine/variable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/burn/engine/variable.cpp b/src/burn/engine/variable.cpp index 04d64f18..fa6190dd 100644 --- a/src/burn/engine/variable.cpp +++ b/src/burn/engine/variable.cpp | |||
@@ -1845,7 +1845,7 @@ static HRESULT InitializeVariableNativeMachine( | |||
1845 | hr = ProcNativeMachine(::GetCurrentProcess(), &usNativeMachine); | 1845 | hr = ProcNativeMachine(::GetCurrentProcess(), &usNativeMachine); |
1846 | ExitOnFailure(hr, "Failed to get native machine value."); | 1846 | ExitOnFailure(hr, "Failed to get native machine value."); |
1847 | 1847 | ||
1848 | if (hr != S_FALSE) | 1848 | if (S_FALSE != hr) |
1849 | { | 1849 | { |
1850 | hr = BVariantSetNumeric(pValue, usNativeMachine); | 1850 | hr = BVariantSetNumeric(pValue, usNativeMachine); |
1851 | ExitOnFailure(hr, "Failed to set variant value."); | 1851 | ExitOnFailure(hr, "Failed to set variant value."); |