svn commit: r229179 - stable/9/sbin/devd

Dimitry Andric dim at FreeBSD.org
Sun Jan 1 17:47:53 UTC 2012


Author: dim
Date: Sun Jan  1 17:47:52 2012
New Revision: 229179
URL: http://svn.freebsd.org/changeset/base/229179

Log:
  MFC r228618
  
  In sbin/devd/devd.h, 'event_proc' and 'eps' are declared as structs.  In
  devd.hh, they are redeclared as classes.  Fix the inconsistency.

Modified:
  stable/9/sbin/devd/devd.hh
Directory Properties:
  stable/9/sbin/devd/   (props changed)

Modified: stable/9/sbin/devd/devd.hh
==============================================================================
--- stable/9/sbin/devd/devd.hh	Sun Jan  1 17:44:26 2012	(r229178)
+++ stable/9/sbin/devd/devd.hh	Sun Jan  1 17:47:52 2012	(r229179)
@@ -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() {}
@@ -125,7 +125,7 @@ private:
 	std::string _cmd;
 };
 
-class event_proc
+struct event_proc
 {
 public:
 	event_proc();


More information about the svn-src-all mailing list