Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
ale5000-git committed Oct 30, 2024
1 parent ab467e7 commit 8b7c87b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/bits-info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8b7c87b

Please sign in to comment.