diff options
author | Bob Arnson <bob@firegiant.com> | 2020-12-26 22:15:06 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-01-19 15:50:11 -0600 |
commit | a5b86b987bb5a6fbcdb191bbe8b51a621140b4e6 (patch) | |
tree | ecbeb7a3bf969990f3f96f9cba56bd68ab5d95af /src/engine/cabextract.cpp | |
parent | 059e476a8d9af2472503057d7102852e64e9ca0b (diff) | |
download | wix-a5b86b987bb5a6fbcdb191bbe8b51a621140b4e6.tar.gz wix-a5b86b987bb5a6fbcdb191bbe8b51a621140b4e6.tar.bz2 wix-a5b86b987bb5a6fbcdb191bbe8b51a621140b4e6.zip |
Fix code analysis warnings.
Diffstat (limited to 'src/engine/cabextract.cpp')
-rw-r--r-- | src/engine/cabextract.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/cabextract.cpp b/src/engine/cabextract.cpp index 04c2c6ec..5a02ff8a 100644 --- a/src/engine/cabextract.cpp +++ b/src/engine/cabextract.cpp | |||
@@ -543,7 +543,7 @@ static INT_PTR CopyFileCallback( | |||
543 | 543 | ||
544 | // copy stream name | 544 | // copy stream name |
545 | hr = StrAllocStringAnsi(pContext->Cabinet.psczStreamName, pFDINotify->psz1, 0, CP_UTF8); | 545 | hr = StrAllocStringAnsi(pContext->Cabinet.psczStreamName, pFDINotify->psz1, 0, CP_UTF8); |
546 | ExitOnFailure(hr, "Failed to copy stream name: %ls", pFDINotify->psz1); | 546 | ExitOnFailure(hr, "Failed to copy stream name: %hs", pFDINotify->psz1); |
547 | 547 | ||
548 | // set operation complete event | 548 | // set operation complete event |
549 | if (!::SetEvent(pContext->Cabinet.hOperationCompleteEvent)) | 549 | if (!::SetEvent(pContext->Cabinet.hOperationCompleteEvent)) |