diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-12-11 01:09:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-12-11 01:09:48 +0000 |
commit | 6e133fcb42f3424e2610ea69a978dcb1ce310ff2 (patch) | |
tree | caaef6bc3bd54e7f6636d9426d7ec8744bb1146b /sys/arch/i386 | |
parent | caa748d9455530a59419f598a565994b43075b45 (diff) |
remove @ that i do not like
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 103f5e36af3..2e3d5b10796 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.251 2003/11/15 19:33:26 henning Exp $ */ +/* $OpenBSD: machdep.c,v 1.252 2003/12/11 01:09:47 deraadt Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -1927,11 +1927,11 @@ identifycpu() ghz = (pentium_mhz + 9) / 1000; fr = ((pentium_mhz + 9) / 10 ) % 100; if (fr) - printf(" @%d.%02d GHz", ghz, fr); + printf(" %d.%02d GHz", ghz, fr); else - printf(" @%d GHz", ghz); + printf(" %d GHz", ghz); } else - printf(" @%d MHz", pentium_mhz); + printf(" %d MHz", pentium_mhz); } #endif printf("\n"); |