Fix a GCC warning when compiling on evbppc.

From FUKAUMI Naoki in PR #29669.
This commit is contained in:
peter 2005-03-15 18:08:59 +00:00
parent 9df36978f0
commit 851064ccf9
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pf_ioctl.c,v 1.15 2005/02/14 21:28:33 peter Exp $ */
/* $NetBSD: pf_ioctl.c,v 1.16 2005/03/15 18:08:59 peter Exp $ */
/* $OpenBSD: pf_ioctl.c,v 1.130.2.1 2004/12/19 19:01:50 brad Exp $ */
/*
@ -452,7 +452,7 @@ struct pf_ruleset *
pf_find_or_create_ruleset(const char *path)
{
static char p[MAXPATHLEN];
char *q, *r;
char *q = NULL /* XXX gcc */, *r;
struct pf_ruleset *ruleset;
struct pf_anchor *anchor = NULL /* XXX gcc */,
*dup, *parent = NULL;