]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Avoid gcc warning.
authorBruno Haible <bruno@clisp.org>
Thu, 4 Apr 2002 10:10:16 +0000 (10:10 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:07:51 +0000 (12:07 +0200)
src/ChangeLog
src/msginit.c

index fd2de1e32d1c3d1bef3ae1ae07bdfcb2507e31ca..c7c1cdd1b27e7e546653265e8a294e41d535f9ab 100644 (file)
@@ -1,3 +1,7 @@
+2002-04-04  Bruno Haible  <bruno@clisp.org>
+
+       * msginit.c (find_pot): Add dummy return, to avoid gcc warning.
+
 2002-03-12  Bruno Haible  <bruno@clisp.org>
 
        * gettext-0.11.1 released.
index 33fed5177e120d9d675a25f2646edf25a87f06cf..2a6e087f6a554071fda9016eb0ae169b6e76a545 100644 (file)
@@ -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;
 }