Initialize *pfh to NULL to quiet a gcc warning, not part of my original

commit because it was not part of the new code.
This commit is contained in:
Tom Rhodes 2007-03-09 09:40:23 +00:00
parent 12d7249e24
commit 15543aadb3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=167357

View File

@ -48,7 +48,7 @@ static void usage(void);
int
main(int argc, char *argv[])
{
struct pidfh *pfh;
struct pidfh *pfh = NULL;
int ch, nochdir, noclose, errcode;
const char *pidfile, *user, *group;
pid_t otherpid;