diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-04-28 18:30:00 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-04-29 14:53:51 -0500 |
commit | 8a8a25695351ee542f08886a9d0957c78c6af366 (patch) | |
tree | b562dbd7cd507799ba07b444cdb8a73b9eb3f299 /src/ca/FormatFiles.cpp | |
parent | 614dc57adfadcaced3973495fafd3f85115bac39 (diff) | |
download | wix-8a8a25695351ee542f08886a9d0957c78c6af366.tar.gz wix-8a8a25695351ee542f08886a9d0957c78c6af366.tar.bz2 wix-8a8a25695351ee542f08886a9d0957c78c6af366.zip |
Clean up 32-bit assumptions.
Diffstat (limited to 'src/ca/FormatFiles.cpp')
-rw-r--r-- | src/ca/FormatFiles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ca/FormatFiles.cpp b/src/ca/FormatFiles.cpp index 464b92d6..d1533999 100644 --- a/src/ca/FormatFiles.cpp +++ b/src/ca/FormatFiles.cpp | |||
@@ -203,7 +203,7 @@ extern "C" UINT __stdcall WixExecFormatFiles( | |||
203 | hr = FileGetTime(sczFilePath, NULL, NULL, &filetime); | 203 | hr = FileGetTime(sczFilePath, NULL, NULL, &filetime); |
204 | ExitOnFailure(hr, "Failed to get modified time of file : %ls", sczFilePath); | 204 | ExitOnFailure(hr, "Failed to get modified time of file : %ls", sczFilePath); |
205 | 205 | ||
206 | hr = FileWrite(sczFilePath, FILE_ATTRIBUTE_NORMAL, pbData, static_cast<DWORD>(cbData), NULL); | 206 | hr = FileWrite(sczFilePath, FILE_ATTRIBUTE_NORMAL, pbData, cbData, NULL); |
207 | ExitOnFailure(hr, "Failed to write file content: %ls", sczFilePath); | 207 | ExitOnFailure(hr, "Failed to write file content: %ls", sczFilePath); |
208 | 208 | ||
209 | hr = FileSetTime(sczFilePath, NULL, NULL, &filetime); | 209 | hr = FileSetTime(sczFilePath, NULL, NULL, &filetime); |