svn commit: r247757 - head/sbin/devd

Eitan Adler eadler at FreeBSD.org
Mon Mar 4 02:21:18 UTC 2013


Author: eadler
Date: Mon Mar  4 02:21:17 2013
New Revision: 247757
URL: http://svnweb.freebsd.org/changeset/base/247757

Log:
  devd: Use the standard constructor of std::string instead of string("").
  
  Submitted by:	Christoph Mallon <christoph.mallon at gmx.de>
  Approved by:	cperciva (mentor)

Modified:
  head/sbin/devd/devd.hh

Modified: head/sbin/devd/devd.hh
==============================================================================
--- head/sbin/devd/devd.hh	Mon Mar  4 02:21:15 2013	(r247756)
+++ head/sbin/devd/devd.hh	Mon Mar  4 02:21:17 2013	(r247757)
@@ -144,7 +144,7 @@ private:
 class config
 {
 public:
-	config() : _pidfile("") { push_var_table(); }
+	config() { push_var_table(); }
 	virtual ~config() { reset(); }
 	void add_attach(int, event_proc *);
 	void add_detach(int, event_proc *);


More information about the svn-src-all mailing list