mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-01 00:18:15 +01:00
Minor initialization change to not trigger bogus gcc warning about
passing literal strings to the constructors of string.
This commit is contained in:
parent
91b222676b
commit
ec4a9b7ce1
@ -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 *);
|
||||
|
Loading…
Reference in New Issue
Block a user