From: Bruno Haible Date: Thu, 4 Apr 2002 10:10:16 +0000 (+0000) Subject: Avoid gcc warning. X-Git-Tag: 0.11.2-branchpoint~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6925aae17034ff22b02c67a237f7f78255733fc4;p=thirdparty%2Fgettext.git Avoid gcc warning. --- diff --git a/src/ChangeLog b/src/ChangeLog index fd2de1e32..c7c1cdd1b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-04-04 Bruno Haible + + * msginit.c (find_pot): Add dummy return, to avoid gcc warning. + 2002-03-12 Bruno Haible * gettext-0.11.1 released. diff --git a/src/msginit.c b/src/msginit.c index 33fed5177..2a6e087f6 100644 --- a/src/msginit.c +++ b/src/msginit.c @@ -452,6 +452,8 @@ Please specify the input .pot file through the --input option.\n"))); Found no .pot file in the current directory.\n\ Please specify the input .pot file through the --input option.\n"))); usage (EXIT_FAILURE); + /* NOTREACHED */ + return NULL; }