tuklib_mbstr_width: Fix a warning from -Wsign-conversion.

This commit is contained in:
Lasse Collin 2019-06-23 23:22:45 +03:00
parent 37df03ce52
commit 5c4fb60e8d
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ tuklib_mbstr_width(const char *str, size_t *bytes)
if (wc_width < 0) if (wc_width < 0)
return (size_t)-1; return (size_t)-1;
width += wc_width; width += (size_t)wc_width;
} }
// Require that the string ends in the initial shift state. // Require that the string ends in the initial shift state.