1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

xz: Silence warnings from -Wsign-conversion in a 32-bit build.

This commit is contained in:
Lasse Collin 2023-01-12 06:01:12 +02:00
parent 31c21c734b
commit b1a6d180a3
2 changed files with 3 additions and 3 deletions

View file

@ -27,5 +27,5 @@ tuklib_mbstr_fw(const char *str, int columns_min)
if (width < (size_t)columns_min) if (width < (size_t)columns_min)
len += (size_t)columns_min - width; len += (size_t)columns_min - width;
return len; return (int)len;
} }

View file

@ -276,7 +276,7 @@ init_headings(void)
// If the translated string is wider than the minimum width // If the translated string is wider than the minimum width
// set at compile time, increase the width. // set at compile time, increase the width.
if ((size_t)(headings[HEADING_CHECK].columns) < w) if ((size_t)(headings[HEADING_CHECK].columns) < w)
headings[HEADING_CHECK].columns = w; headings[HEADING_CHECK].columns = (int)w;
} }
for (unsigned i = 0; i < ARRAY_SIZE(headings); ++i) { for (unsigned i = 0; i < ARRAY_SIZE(headings); ++i) {
@ -291,7 +291,7 @@ init_headings(void)
// If the translated string is wider than the minimum width // If the translated string is wider than the minimum width
// set at compile time, increase the width. // set at compile time, increase the width.
if ((size_t)(headings[i].columns) < w) if ((size_t)(headings[i].columns) < w)
headings[i].columns = w; headings[i].columns = (int)w;
// Calculate the field width for printf("%*s") so that // Calculate the field width for printf("%*s") so that
// the string uses .columns number of columns on a terminal. // the string uses .columns number of columns on a terminal.