diff options
author | 2013-11-04 02:41:49 +0000 | |
---|---|---|
committer | 2013-11-04 02:41:49 +0000 | |
commit | 4f3c44ad606214e87f09b6e068d9e48ce348455a (patch) | |
tree | fa54eccd59940353b250d140d6dc6e1502eb07e5 /sys | |
parent | oops, meant MACHINE_CPU not MACHINE_ARCH (matters for mips64*) (diff) | |
download | wireguard-openbsd-4f3c44ad606214e87f09b6e068d9e48ce348455a.tar.xz wireguard-openbsd-4f3c44ad606214e87f09b6e068d9e48ce348455a.zip |
dlg missed the header change in the sensor task commit
unbreaks the build
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/sensors.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/sys/sensors.h b/sys/sys/sensors.h index 71a9299ac97..cf7de78e509 100644 --- a/sys/sys/sensors.h +++ b/sys/sys/sensors.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sensors.h,v 1.32 2012/09/20 20:11:58 yuo Exp $ */ +/* $OpenBSD: sensors.h,v 1.33 2013/11/04 02:41:49 jsg Exp $ */ /* * Copyright (c) 2003, 2004 Alexander Yurchenko <grange@openbsd.org> @@ -164,7 +164,8 @@ int sensor_find(int, enum sensor_type, int, struct ksensor **); /* task scheduling */ struct sensor_task; -struct sensor_task *sensor_task_register(void *, void (*)(void *), int); +struct sensor_task *sensor_task_register(void *, void (*)(void *), + unsigned int); void sensor_task_unregister(struct sensor_task *); #endif /* _KERNEL */ |