diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-06 18:12:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-06 18:12:48 +0000 |
commit | 778312b2d4b3d9d98fa4dee8f8f2b2deeb7a7483 (patch) | |
tree | 7418cc92fac669a40cfbb4bde2a7073bbd59c244 | |
parent | 621fc0c10d6d9f2f7380037d6580c4af69808ad5 (diff) |
remove last , in enum
-rw-r--r-- | sys/sys/device.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/device.h b/sys/sys/device.h index 9095c0bbaa7..f2a6d53206b 100644 --- a/sys/sys/device.h +++ b/sys/sys/device.h @@ -1,4 +1,4 @@ -/* $OpenBSD: device.h,v 1.24 2002/08/27 01:19:52 wcobb Exp $ */ +/* $OpenBSD: device.h,v 1.25 2002/09/06 18:12:47 deraadt Exp $ */ /* $NetBSD: device.h,v 1.15 1996/04/09 20:55:24 cgd Exp $ */ /* @@ -68,7 +68,7 @@ enum devclass { */ enum devact { DVACT_ACTIVATE, /* activate the device */ - DVACT_DEACTIVATE, /* deactivate the device */ + DVACT_DEACTIVATE /* deactivate the device */ }; #include <sys/lock.h> |