aboutsummaryrefslogtreecommitdiff
path: root/src/dutil/dirutil.cpp
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-11-29 18:57:55 -0500
committerBob Arnson <bob@firegiant.com>2020-12-26 22:08:07 -0500
commit0ae3b1e7b5c0beff0fcfb82728c5bf9f25aee250 (patch)
treea8c4cf37f7bcf103db5892c842cb4211ca3ee779 /src/dutil/dirutil.cpp
parent6554b42e999c8ff2cf20361a7dd7ec500723ec71 (diff)
downloadwix-0ae3b1e7b5c0beff0fcfb82728c5bf9f25aee250.tar.gz
wix-0ae3b1e7b5c0beff0fcfb82728c5bf9f25aee250.tar.bz2
wix-0ae3b1e7b5c0beff0fcfb82728c5bf9f25aee250.zip
More size_t-ification.
Diffstat (limited to 'src/dutil/dirutil.cpp')
-rw-r--r--src/dutil/dirutil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dutil/dirutil.cpp b/src/dutil/dirutil.cpp
index 1f06f551..5e22ee65 100644
--- a/src/dutil/dirutil.cpp
+++ b/src/dutil/dirutil.cpp
@@ -346,7 +346,7 @@ extern "C" HRESULT DAPI DirGetCurrent(
346 ) 346 )
347{ 347{
348 HRESULT hr = S_OK; 348 HRESULT hr = S_OK;
349 DWORD_PTR cch = 0; 349 SIZE_T cch = 0;
350 350
351 if (psczCurrentDirectory && *psczCurrentDirectory) 351 if (psczCurrentDirectory && *psczCurrentDirectory)
352 { 352 {