From bcd3ee7ab858d62beb36af9f5986544b68a3dd35 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Wed, 28 Apr 2021 16:36:56 -0500 Subject: Clean up more 32-bit assumptions. --- src/dutil/apuputil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dutil/apuputil.cpp') 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( if (dwDigestStringLength != cchDigestString) { hr = HRESULT_FROM_WIN32(ERROR_INVALID_DATA); - ApupExitOnRootFailure(hr, "Invalid digest length (%zu) for digest algorithm (%u).", cchDigestString, dwDigestStringLength); + ApupExitOnRootFailure(hr, "Invalid digest length (%Iu) for digest algorithm (%u).", cchDigestString, dwDigestStringLength); } pEnclosure->cbDigest = sizeof(BYTE) * dwDigestLength; -- cgit v1.2.3-55-g6feb