shithub: riscv

Download patch

ref: b80975da8b71c883c4aa578777e58b6c0c0821fb
parent: 3f835565d5a8366ebb48fd611d3cd902db766b93
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun Nov 15 17:47:45 EST 2020

aux/cpuid: fix final newline on printbits()

--- a/sys/src/cmd/aux/cpuid.c
+++ b/sys/src/cmd/aux/cpuid.c
@@ -63,7 +63,7 @@
 			}
 			Bprint(out, "%s ", s[i]);
 		}
-	if(j % 16 != 0)
+	if(j != 0)
 		Bprint(out, "\n");
 }