Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergei Alonichau committed Nov 4, 2019
1 parent 3713949 commit b0341ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blingfireclient.library/src/FAUtf8Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ const int FAStrUtf8ToUtf16LE (

DebugLogAssert (out != pArray);

for (auto j = 0; i < MaxSize && j < out - pArray; j++) {
for (std::ptrdiff_t j = 0; i < MaxSize && j < out - pArray; j++) {
pOffsets[i++] = Offset;
}

Expand Down

0 comments on commit b0341ac

Please sign in to comment.