summaryrefslogtreecommitdiff
path: root/src/palrt
diff options
context:
space:
mode:
Diffstat (limited to 'src/palrt')
-rw-r--r--src/palrt/path.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/palrt/path.cpp b/src/palrt/path.cpp
index 3d6c7a6564..0560f6c739 100644
--- a/src/palrt/path.cpp
+++ b/src/palrt/path.cpp
@@ -467,7 +467,7 @@ STDAPI_(LPWSTR) PathCombineW(LPWSTR lpszDest, LPCWSTR lpszDir, LPCWSTR lpszFile)
{
// Skip the backslash when copying
// Note: We don't support strings longer than 4GB, but that's
- // okay because we already barf at MAX_PATH
+ // okay because we already fail at MAX_PATH
int iRemaining = (int)(ARRAYSIZE(szTemp) - (pszT - szTemp));
StringCchCopyNW(pszT, iRemaining, lpszFile+1, iRemaining);
}