aboutsummaryrefslogtreecommitdiff
path: root/src/xz
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2023-01-12 06:01:12 +0200
committerLasse Collin <lasse.collin@tukaani.org>2023-01-12 06:01:12 +0200
commitb1a6d180a363d57b2b1c89526ff3f0782bf863d3 (patch)
tree279bdfdc8790fd8039183319071e4b54ca7b2b17 /src/xz
parentliblzma: Silence another warning from -Wsign-conversion in a 32-bit build. (diff)
downloadxz-b1a6d180a363d57b2b1c89526ff3f0782bf863d3.tar.xz
xz: Silence warnings from -Wsign-conversion in a 32-bit build.
Diffstat (limited to 'src/xz')
-rw-r--r--src/xz/list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xz/list.c b/src/xz/list.c
index ee61aeb9..90799bd2 100644
--- a/src/xz/list.c
+++ b/src/xz/list.c
@@ -276,7 +276,7 @@ init_headings(void)
// If the translated string is wider than the minimum width
// set at compile time, increase the width.
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) {
@@ -291,7 +291,7 @@ init_headings(void)
// If the translated string is wider than the minimum width
// set at compile time, increase the width.
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
// the string uses .columns number of columns on a terminal.