summaryrefslogtreecommitdiffstats
path: root/sbin/devd/devd.hh
diff options
context:
space:
mode:
authoreadler <eadler@FreeBSD.org>2013-03-04 02:21:17 +0000
committereadler <eadler@FreeBSD.org>2013-03-04 02:21:17 +0000
commit01afb73f51e847e1a23ce940b643a8dfeeb0e4e9 (patch)
treec5fda1dcda908b0265972ad57122b93d8e28dea9 /sbin/devd/devd.hh
parent229e6c166677faa7fb2ebb61f7184420fd6a63e2 (diff)
downloadFreeBSD-src-01afb73f51e847e1a23ce940b643a8dfeeb0e4e9.zip
FreeBSD-src-01afb73f51e847e1a23ce940b643a8dfeeb0e4e9.tar.gz
devd: Use the standard constructor of std::string instead of string("").
Submitted by: Christoph Mallon <christoph.mallon@gmx.de> Approved by: cperciva (mentor)
Diffstat (limited to 'sbin/devd/devd.hh')
-rw-r--r--sbin/devd/devd.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/devd/devd.hh b/sbin/devd/devd.hh
index 448a9e4..9f70b23 100644
--- a/sbin/devd/devd.hh
+++ b/sbin/devd/devd.hh
@@ -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 *);
OpenPOWER on IntegriCloud