From: Bruno Haible Date: Fri, 26 Oct 2001 09:35:10 +0000 (+0000) Subject: Cosmetic fix. X-Git-Tag: v0.11~392 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6178eb2c0fac0b2364a5a89863de704b5b897e4c;p=thirdparty%2Fgettext.git Cosmetic fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index 1b787840b..b9f53207d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2001-10-21 Bruno Haible + + * read-java.c (execute_and_read_po_output): Return false, not 0. + 2001-10-11 Bruno Haible * msgattrib.c (usage): Fix: --sort-output doesn't deal with duplicates. diff --git a/src/read-java.c b/src/read-java.c index f1be08001..1b9d69498 100644 --- a/src/read-java.c +++ b/src/read-java.c @@ -90,7 +90,7 @@ execute_and_read_po_output (progname, prog_path, prog_argv, private_data) error (EXIT_FAILURE, 0, _("%s subprocess failed with exit code %d"), progname, exitstatus); - return 0; + return false; }