diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-11-15 22:47:45 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-11-15 22:47:45 +0100 |
commit | b80975da8b71c883c4aa578777e58b6c0c0821fb (patch) | |
tree | 81dc326b84cdc7102e458c9abca63c48bd9106be /sys/src/cmd/aux/cpuid.c | |
parent | 3f835565d5a8366ebb48fd611d3cd902db766b93 (diff) |
aux/cpuid: fix final newline on printbits()
Diffstat (limited to 'sys/src/cmd/aux/cpuid.c')
-rw-r--r-- | sys/src/cmd/aux/cpuid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/aux/cpuid.c b/sys/src/cmd/aux/cpuid.c index 3b81f53d5..806099fd3 100644 --- a/sys/src/cmd/aux/cpuid.c +++ b/sys/src/cmd/aux/cpuid.c @@ -63,7 +63,7 @@ printbits(char *id, ulong x, char **s) } Bprint(out, "%s ", s[i]); } - if(j % 16 != 0) + if(j != 0) Bprint(out, "\n"); } |