From: Bruno Haible Date: Wed, 23 Jun 2004 13:29:26 +0000 (+0000) Subject: Fix compilation error with picky compilers. X-Git-Tag: v0.14.2~254 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1dfbf6f2883aa834389a2a8384c8764a15110ca6;p=thirdparty%2Fgettext.git Fix compilation error with picky compilers. --- diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index 77bf9025d..28501c9d4 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,3 +1,8 @@ +2004-06-23 Bruno Haible + + * x-c.c (phase1_getc): Fix phase0_getc invocation. + Reported by Matt Dreezer . + 2004-05-14 Bruno Haible * format-java.c (message_format_parse): Fix argument of freesa() calls. diff --git a/gettext-tools/src/x-c.c b/gettext-tools/src/x-c.c index 93a390f8c..eaa0a9a44 100644 --- a/gettext-tools/src/x-c.c +++ b/gettext-tools/src/x-c.c @@ -1,5 +1,5 @@ /* xgettext C/C++/ObjectiveC backend. - Copyright (C) 1995-1998, 2000-2003 Free Software Foundation, Inc. + Copyright (C) 1995-1998, 2000-2004 Free Software Foundation, Inc. This file was written by Peter Miller @@ -408,7 +408,7 @@ phase1_getc () return '\n'; case '\\': - c = phase0_getc (fp); + c = phase0_getc (); if (c != '\n') { phase0_ungetc (c);