aux/cpuid: fix final newline on printbits()

This commit is contained in:
cinap_lenrek 2020-11-15 22:47:45 +01:00
parent 3f835565d5
commit b80975da8b

View file

@ -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");
}