mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-08-05 09:20:29 +00:00
Fix binary formatting for integers 2 and 3
This commit is contained in:
parent
a6baba1b07
commit
f0ea11c70f
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@
|
|||
|
||||
static inline int PickGoodWidth(unsigned x) {
|
||||
if (x < 16) {
|
||||
if (x < 2) return 0;
|
||||
if (x < 2) return 1;
|
||||
if (x < 8) return 7;
|
||||
return 15;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue