From: David Hankins Date: Wed, 29 Aug 2007 18:09:35 +0000 (+0000) Subject: HEAD build failure reparation. [ISC-Bugs #17115] X-Git-Tag: v4_0_0a3~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9263b5c004e618ef8f34a08e94808d4adafb995;p=thirdparty%2Fdhcp.git HEAD build failure reparation. [ISC-Bugs #17115] --- diff --git a/common/conflex.c b/common/conflex.c index 84c65ecd9..dc8ebc298 100644 --- a/common/conflex.c +++ b/common/conflex.c @@ -36,6 +36,7 @@ #include static int get_char PROTO ((struct parse *)); +static void unget_char(struct parse *, int); static void skip_to_eol PROTO ((struct parse *)); static enum dhcp_token read_whitespace(int c, struct parse *cfile); static enum dhcp_token read_string PROTO ((struct parse *)); @@ -203,7 +204,7 @@ static int get_char (cfile) /* * Return a character to our input buffer. */ -static int +static void unget_char(struct parse *cfile, int c) { if (c != EOF) { cfile->bufix--;