diff options
author | Yojiro Uo <yuo@cvs.openbsd.org> | 2011-09-16 16:41:56 +0000 |
---|---|---|
committer | Yojiro Uo <yuo@cvs.openbsd.org> | 2011-09-16 16:41:56 +0000 |
commit | 7d754458ec5a9f4c365fd8347673b731e241c8a4 (patch) | |
tree | 888d88c085a504bdbbc385ecc13e7319d708fe6f /sbin | |
parent | 04b0f35d228a190dd21954da05437e974a94eaf3 (diff) |
fix typo
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/sysctl/sysctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/sysctl/sysctl.c b/sbin/sysctl/sysctl.c index d01e9c753bd..f8ba7defd56 100644 --- a/sbin/sysctl/sysctl.c +++ b/sbin/sysctl/sysctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sysctl.c,v 1.178 2011/09/16 15:44:31 yuo Exp $ */ +/* $OpenBSD: sysctl.c,v 1.179 2011/09/16 16:41:55 yuo Exp $ */ /* $NetBSD: sysctl.c,v 1.9 1995/09/30 07:12:50 thorpej Exp $ */ /* @@ -2464,7 +2464,7 @@ print_sensor(struct sensor *s) printf("%lld RPM", s->value); break; case SENSOR_VOLTS_AC: - printf("%.2f ADC", s->value / 1000000.0); + printf("%.2f VAC", s->value / 1000000.0); break; case SENSOR_VOLTS_DC: printf("%.2f VDC", s->value / 1000000.0); |