mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
tuklib_mbstr_width: Fix a warning from -Wsign-conversion.
This commit is contained in:
parent
7883d73530
commit
d0a78751eb
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ tuklib_mbstr_width(const char *str, size_t *bytes)
|
|||
if (wc_width < 0)
|
||||
return (size_t)-1;
|
||||
|
||||
width += wc_width;
|
||||
width += (size_t)wc_width;
|
||||
}
|
||||
|
||||
// Require that the string ends in the initial shift state.
|
||||
|
|
Loading…
Reference in a new issue