From 310c6790cb7cd5e30d5e305d9aba4e6a8116473e Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 4 Dec 2023 04:30:46 -0600 Subject: [PATCH] Fix truncate -8g on 32 bit. --- toys/other/truncate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toys/other/truncate.c b/toys/other/truncate.c index 7adeb62d..42ab69cb 100644 --- a/toys/other/truncate.c +++ b/toys/other/truncate.c @@ -26,7 +26,7 @@ config TRUNCATE GLOBALS( char *s; - long size; + long long size; int type; ) -- 2.39.2