diff options
author | 1998-10-09 13:12:43 +0000 | |
---|---|---|
committer | 1998-10-09 13:12:43 +0000 | |
commit | eaff80320ea1e4eb22e2d1ceacab0cc5350e66ce (patch) | |
tree | ad549d35626584a16c997ab456465bedf7c62ad1 | |
parent | tweak spacing of cache information printing (diff) | |
download | wireguard-openbsd-eaff80320ea1e4eb22e2d1ceacab0cc5350e66ce.tar.xz wireguard-openbsd-eaff80320ea1e4eb22e2d1ceacab0cc5350e66ce.zip |
slight further tweak
-rw-r--r-- | sys/arch/sparc/sparc/cpu.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/sparc/sparc/cpu.c b/sys/arch/sparc/sparc/cpu.c index a85ea435dc3..dca23ed5eef 100644 --- a/sys/arch/sparc/sparc/cpu.c +++ b/sys/arch/sparc/sparc/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.15 1998/10/09 13:10:46 deraadt Exp $ */ +/* $OpenBSD: cpu.c,v 1.16 1998/10/09 13:12:43 deraadt Exp $ */ /* $NetBSD: cpu.c,v 1.56 1997/09/15 20:52:36 pk Exp $ */ /* @@ -319,7 +319,8 @@ cache_print(sc) printf("%s%dK external (%d b/l)", sep, ci->ec_totalsize/1024, ci->ec_linesize); } - printf(" "); + if (sep) /* printed at least one field.. */ + printf(" "); } |