aboutsummaryrefslogtreecommitdiff
path: root/src/dutil/apuputil.cpp
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-04-28 16:36:56 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-04-29 13:58:14 -0500
commitbcd3ee7ab858d62beb36af9f5986544b68a3dd35 (patch)
tree424c4e61a580b7c4b7481712f69ab0193d76b9c4 /src/dutil/apuputil.cpp
parentd73c29407fe5ec6a0207af7d9c2547457ae0854c (diff)
downloadwix-bcd3ee7ab858d62beb36af9f5986544b68a3dd35.tar.gz
wix-bcd3ee7ab858d62beb36af9f5986544b68a3dd35.tar.bz2
wix-bcd3ee7ab858d62beb36af9f5986544b68a3dd35.zip
Clean up more 32-bit assumptions.
Diffstat (limited to 'src/dutil/apuputil.cpp')
-rw-r--r--src/dutil/apuputil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dutil/apuputil.cpp b/src/dutil/apuputil.cpp
index 6f5825bb..eb96d515 100644
--- a/src/dutil/apuputil.cpp
+++ b/src/dutil/apuputil.cpp
@@ -388,7 +388,7 @@ static HRESULT ParseEnclosure(
388 if (dwDigestStringLength != cchDigestString) 388 if (dwDigestStringLength != cchDigestString)
389 { 389 {
390 hr = HRESULT_FROM_WIN32(ERROR_INVALID_DATA); 390 hr = HRESULT_FROM_WIN32(ERROR_INVALID_DATA);
391 ApupExitOnRootFailure(hr, "Invalid digest length (%zu) for digest algorithm (%u).", cchDigestString, dwDigestStringLength); 391 ApupExitOnRootFailure(hr, "Invalid digest length (%Iu) for digest algorithm (%u).", cchDigestString, dwDigestStringLength);
392 } 392 }
393 393
394 pEnclosure->cbDigest = sizeof(BYTE) * dwDigestLength; 394 pEnclosure->cbDigest = sizeof(BYTE) * dwDigestLength;