Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
GrabYourPitchforks authored Feb 6, 2020
1 parent 75e23fe commit 503c720
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void GlobalizationNative_CaseFold(
while (srcIdx < cwLength)
{
U16_NEXT(lpSrc, srcIdx, cwLength, srcCodepoint);
dstCodePoint = u_foldCase(srcCodePoint, U_FOLD_CASE_DEFAULT);
dstCodepoint = u_foldCase(srcCodepoint, U_FOLD_CASE_DEFAULT);

U16_APPEND(lpDst, dstIdx, cwLength, dstCodepoint, isError);
assert(isError == FALSE && srcIdx == dstIdx);
Expand Down

0 comments on commit 503c720

Please sign in to comment.