diff options
author | Kurt Miller <kurt@cvs.openbsd.org> | 2013-03-21 19:43:15 +0000 |
---|---|---|
committer | Kurt Miller <kurt@cvs.openbsd.org> | 2013-03-21 19:43:15 +0000 |
commit | 7baa9e13eb89e8d750af7dbd3643976f8e7094b1 (patch) | |
tree | 611b64925307de460a1051a10198e644811e1e1c /sys/arch | |
parent | a4895e581e21cd25530b2ad2835a948c091b70d4 (diff) |
style(9)
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/amd64/identcpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/identcpu.c b/sys/arch/amd64/amd64/identcpu.c index 50ae3c0da2f..e7a1d97d8e5 100644 --- a/sys/arch/amd64/amd64/identcpu.c +++ b/sys/arch/amd64/amd64/identcpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: identcpu.c,v 1.44 2013/03/21 18:39:18 kurt Exp $ */ +/* $OpenBSD: identcpu.c,v 1.45 2013/03/21 19:43:14 kurt Exp $ */ /* $NetBSD: identcpu.c,v 1.1 2003/04/26 18:39:28 fvdl Exp $ */ /* @@ -518,7 +518,7 @@ identifycpu(struct cpu_info *ci) CPUID(0x06, val, dummy, dummy, dummy); if (val & 0x1) { strlcpy(ci->ci_sensordev.xname, ci->ci_dev->dv_xname, - sizeof(ci->ci_sensordev.xname)); + sizeof(ci->ci_sensordev.xname)); ci->ci_sensor.type = SENSOR_TEMP; sensor_task_register(ci, intelcore_update_sensor, 5); sensor_attach(&ci->ci_sensordev, &ci->ci_sensor); |