summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32.c b/win32.c
index b65fbc743..9aa99dab9 100644
--- a/win32.c
+++ b/win32.c
@@ -1126,9 +1126,9 @@ HRESULT OTTDSHGetFolderPath(HWND hwnd, int csidl, HANDLE hToken, DWORD dwFlags,
DWORD ret;
switch (csidl) {
case CSIDL_FONTS: /* Get the system font path, eg %WINDIR%\Fonts */
- ret = GetEnvironmentVariable(_T("WINDIR"), pszPath, MAX_PATH * sizeof(TCHAR));
+ ret = GetEnvironmentVariable(_T("WINDIR"), pszPath, MAX_PATH);
if (ret == 0) break;
- _tcsncat(pszPath, _T("\\Fonts"), MAX_PATH * sizeof(TCHAR));
+ _tcsncat(pszPath, _T("\\Fonts"), MAX_PATH);
return (HRESULT)0;
break;