From 5d2c2b27a6323e2666378b986129b2a7c2c39e5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 6 Feb 2022 16:04:24 +0100 Subject: New upstream version 5.2.2GA --- app/bin/include/dirent.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/bin/include/dirent.h') diff --git a/app/bin/include/dirent.h b/app/bin/include/dirent.h index fdfbe5b..2ebf703 100644 --- a/app/bin/include/dirent.h +++ b/app/bin/include/dirent.h @@ -1125,7 +1125,7 @@ extern "C" { /* Pointer to string to convert */ mbstr, /* Size of multi-byte string */ (int)len, /* Pointer to output buffer */ wcstr, - /* Size of output buffer */ sizeInWords - 1 + /* Size of output buffer */ (int)sizeInWords - 1 ); /* Ensure that output buffer is zero-terminated */ @@ -1208,7 +1208,7 @@ extern "C" { /* Pointer to unicode string */ wcstr, /* Length of unicode string */ (int)len, /* Pointer to output buffer */ mbstr, - /* Size of output buffer */ sizeInBytes - 1, + /* Size of output buffer */ (int)sizeInBytes - 1, /* Default character */ NULL, /* Whether default character was used or not */ pflag ); -- cgit v1.2.3