1
0
Fork 0

Silence a compiler warning.

This commit is contained in:
Max Neunhoeffer 2016-02-26 10:11:59 +01:00
parent 5688e05f1c
commit de745abce9
1 changed files with 2 additions and 0 deletions

View File

@ -144,6 +144,8 @@ static ConversionResult copyString8to32 (char32_t* dst, size_t dstSize, size_t&
if (dstCount < dstSize) {
*targetStart = 0;
}
} else {
dstCount = 0;
}
return res;