summaryrefslogtreecommitdiff
path: root/src/palrt
diff options
context:
space:
mode:
authorDan Moseley <danmose@microsoft.com>2019-05-01 22:49:50 -0700
committerJan Kotas <jkotas@microsoft.com>2019-05-01 22:49:49 -0700
commit78e2dd7a4dbe9846806215741783a0900f698159 (patch)
treef067b90ca2fb754e52183cae7572601a940b3c24 /src/palrt
parent1744b9ab1d7e8a8654c621b3ab79eafb7afa0402 (diff)
downloadcoreclr-78e2dd7a4dbe9846806215741783a0900f698159.tar.gz
coreclr-78e2dd7a4dbe9846806215741783a0900f698159.tar.bz2
coreclr-78e2dd7a4dbe9846806215741783a0900f698159.zip
Adjust some terms (#24351)
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);
}