diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-08-03 17:30:06 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-08-03 17:30:06 +0000 |
commit | 59569043866c3c1313a72b0caf7900152cbbf1b0 (patch) | |
tree | fa372193ef2a1dbf5f9d9b28e79a518ee5b04ab0 /usr.sbin | |
parent | 8ce32e3964d09c53e02d427a320de2245b48c96f (diff) |
dlg did not test what he affects; enum clash
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/sensorsd/sensorsd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sensorsd/sensorsd.c b/usr.sbin/sensorsd/sensorsd.c index 1aabc1a8efa..4a316927da5 100644 --- a/usr.sbin/sensorsd/sensorsd.c +++ b/usr.sbin/sensorsd/sensorsd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sensorsd.c,v 1.16 2005/06/03 12:31:28 henning Exp $ */ +/* $OpenBSD: sensorsd.c,v 1.17 2005/08/03 17:30:05 deraadt Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -44,7 +44,7 @@ int parse_config(char *); int64_t get_val(char *, int, enum sensor_type); void reparse_cfg(int); -enum sensor_status { +enum sensorsd_status { STATUS_OK, STATUS_FAIL }; |