diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/BurnUnitTest/VariableHelpers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/BurnUnitTest/VariableHelpers.cpp b/src/test/BurnUnitTest/VariableHelpers.cpp index 9ce46a76..fdfb9191 100644 --- a/src/test/BurnUnitTest/VariableHelpers.cpp +++ b/src/test/BurnUnitTest/VariableHelpers.cpp | |||
@@ -17,11 +17,11 @@ namespace Test | |||
17 | { | 17 | { |
18 | namespace Bootstrapper | 18 | namespace Bootstrapper |
19 | { | 19 | { |
20 | void VariableSetStringHelper(BURN_VARIABLES* pVariables, LPCWSTR wzVariable, LPCWSTR wzValue) | 20 | void VariableSetStringHelper(BURN_VARIABLES* pVariables, LPCWSTR wzVariable, LPCWSTR wzValue, BOOL fFormatted) |
21 | { | 21 | { |
22 | HRESULT hr = S_OK; | 22 | HRESULT hr = S_OK; |
23 | 23 | ||
24 | hr = VariableSetString(pVariables, wzVariable, wzValue, FALSE); | 24 | hr = VariableSetString(pVariables, wzVariable, wzValue, FALSE, fFormatted); |
25 | TestThrowOnFailure2(hr, L"Failed to set %s to: %s", wzVariable, wzValue); | 25 | TestThrowOnFailure2(hr, L"Failed to set %s to: %s", wzVariable, wzValue); |
26 | } | 26 | } |
27 | 27 | ||