Minor initialization change to not trigger bogus gcc warning about

passing literal strings to the constructors of string.
This commit is contained in:
Warner Losh 2007-12-21 01:00:04 +00:00
parent 91b222676b
commit ec4a9b7ce1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=174824

View file

@ -143,7 +143,7 @@ private:
class config
{
public:
config() : _pidfile("") { push_var_table(); }
config() { _pidfile = ""; push_var_table(); }
virtual ~config() { reset(); }
void add_attach(int, event_proc *);
void add_detach(int, event_proc *);