buffer.c: enable -Wconversion #3744

This commit is contained in:
Justin M. Keyes 2017-03-03 00:15:42 +01:00
parent 165d525abd
commit 8bbdef1fd8

View File

@ -3839,7 +3839,7 @@ int build_stl_str_hl(
// { Reduce the number by base^n
while (num_chars-- > maxwid) {
num /= base;
num /= (long)base;
}
// }