summaryrefslogtreecommitdiff
path: root/sbin/sysctl
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2007-01-06 00:23:53 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2007-01-06 00:23:53 +0000
commit0e952a1cdec14e98718bcfd101b92c324e435d02 (patch)
tree6387b6b5409fe741af424be44063340f37515dd5 /sbin/sysctl
parent5ae69bd4ec0afe22a6326d5e232fb847b30991ed (diff)
pretty up the sensor outputs a wee bit more; partly spotted by jsg
Diffstat (limited to 'sbin/sysctl')
-rw-r--r--sbin/sysctl/sysctl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/sysctl/sysctl.c b/sbin/sysctl/sysctl.c
index d219bc1b8b9..0ca3064a085 100644
--- a/sbin/sysctl/sysctl.c
+++ b/sbin/sysctl/sysctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sysctl.c,v 1.144 2006/12/26 11:52:30 mbalmer Exp $ */
+/* $OpenBSD: sysctl.c,v 1.145 2007/01/06 00:23:52 deraadt Exp $ */
/* $NetBSD: sysctl.c,v 1.9 1995/09/30 07:12:50 thorpej Exp $ */
/*
@@ -40,7 +40,7 @@ static const char copyright[] =
#if 0
static const char sccsid[] = "@(#)sysctl.c 8.5 (Berkeley) 5/9/95";
#else
-static const char rcsid[] = "$OpenBSD: sysctl.c,v 1.144 2006/12/26 11:52:30 mbalmer Exp $";
+static const char rcsid[] = "$OpenBSD: sysctl.c,v 1.145 2007/01/06 00:23:52 deraadt Exp $";
#endif
#endif /* not lint */
@@ -2260,7 +2260,7 @@ print_sensor(struct sensor *s)
printf("%lld RPM", s->value);
break;
case SENSOR_VOLTS_DC:
- printf("%.2f V DC", s->value / 1000000.0);
+ printf("%.2f VDC", s->value / 1000000.0);
break;
case SENSOR_AMPS:
printf("%.2f A", s->value / 1000000.0);
@@ -2330,7 +2330,7 @@ print_sensor(struct sensor *s)
}
if (s->desc[0] != '\0')
- printf(", (%s)", s->desc);
+ printf(" (%s)", s->desc);
switch (s->status) {
case SENSOR_S_OK: