In sbin/devd/devd.h, 'event_proc' and 'eps' are declared as structs. In

devd.hh, there are redeclared as classes.  Fix the inconsistency.

MFC after:	1 week
This commit is contained in:
Dimitry Andric 2011-12-17 01:54:51 +00:00
parent 9b9c36a3b5
commit b884d5e84a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=228618

View File

@ -65,7 +65,7 @@ private:
* eps is short for event_proc_single. It is a single entry in an
* event_proc. Each keyword needs its own subclass from eps.
*/
class eps
struct eps
{
public:
eps() {}
@ -126,7 +126,7 @@ private:
std::string _cmd;
};
class event_proc
struct event_proc
{
public:
event_proc();