diff options
author | eadler <eadler@FreeBSD.org> | 2013-03-04 02:21:17 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2013-03-04 02:21:17 +0000 |
commit | 01afb73f51e847e1a23ce940b643a8dfeeb0e4e9 (patch) | |
tree | c5fda1dcda908b0265972ad57122b93d8e28dea9 /sbin/devd | |
parent | 229e6c166677faa7fb2ebb61f7184420fd6a63e2 (diff) | |
download | FreeBSD-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')
-rw-r--r-- | sbin/devd/devd.hh | 2 |
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 *); |