summaryrefslogtreecommitdiff
path: root/sys/arch/i386
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-12-11 01:09:48 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-12-11 01:09:48 +0000
commit6e133fcb42f3424e2610ea69a978dcb1ce310ff2 (patch)
treecaaef6bc3bd54e7f6636d9426d7ec8744bb1146b /sys/arch/i386
parentcaa748d9455530a59419f598a565994b43075b45 (diff)
remove @ that i do not like
Diffstat (limited to 'sys/arch/i386')
-rw-r--r--sys/arch/i386/i386/machdep.c8
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");