From 8b7c87b61385718bbaca671ee6ce5a8a10bb9bf4 Mon Sep 17 00:00:00 2001 From: ale5000 <15793015+ale5000-git@users.noreply.github.com> Date: Wed, 30 Oct 2024 10:41:30 +0100 Subject: [PATCH] Minor change --- tools/bits-info.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/bits-info.sh b/tools/bits-info.sh index 3bd4371c..5ea08f94 100755 --- a/tools/bits-info.sh +++ b/tools/bits-info.sh @@ -74,8 +74,8 @@ convert_max_unsigned_int_to_bit() '32767') printf '%s\n' "16-bit signed${bug_suffix}" ;; '65535') printf '%s\n' "16-bit unsigned" ;; '256446000') printf '%s\n' "32-bit BROKEN" ;; - '2147483647') printf '%s\n' "32-bit signed${bug_suffix}" ;; # Bugged unsigned 'printf' of awk (seen on some versions of Bash) - '2147483648') printf '%s\n' "32-bit signed + 1 (BusyBox unsigned bug)" ;; # Bugged unsigned 'printf' of awk (likely on BusyBox) + '2147483647') printf '%s\n' "32-bit signed${bug_suffix}" ;; # Bugged unsigned 'printf' of awk (seen on some versions of Bash) + '2147483648') printf '%s\n' "32-bit signed + 1 BB BUG" ;; # Bugged unsigned 'printf' of awk (likely on BusyBox) '4294967295') printf '%s\n' "32-bit unsigned" ;; '9223372036854775807') printf '%s\n' "64-bit signed${bug_suffix}" ;; # Bugged unsigned 'printf' (seen on Ksh93 / OSH) '9223372036854775808') printf '%s\n' "64-bit signed + 1${bug_suffix}" ;; # Bugged unsigned 'printf' (seen on Ksh93)