changeset 9692:b25b75624f04

useless-if-before-free: Fix reversed exit values. * build-aux/useless-if-before-free: Use correct values for EXIT_MATCH and EXIT_NO_MATCH.
author Jim Meyering <meyering@redhat.com>
date Mon, 11 Feb 2008 09:10:21 +0100
parents ae73b5517c84
children 2e591b4ebd0d
files ChangeLog build-aux/useless-if-before-free
diffstat 2 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2008-02-11  Jim Meyering  <meyering@redhat.com>
 
+	useless-if-before-free: Fix reversed exit values.
+	* build-aux/useless-if-before-free: Use correct values
+	for EXIT_MATCH and EXIT_NO_MATCH.
+
 	* build-aux/useless-if-before-free: Close stdout carefully.
 
 2008-02-10  Bruno Haible  <bruno@clisp.org>
--- a/build-aux/useless-if-before-free
+++ b/build-aux/useless-if-before-free
@@ -2,7 +2,7 @@
 # Detect instances of "if (p) free (p);".
 # Likewise for "if (p != NULL) free (p);".  And with braces.
 
-my $VERSION = '2008-02-11 07:32'; # UTC
+my $VERSION = '2008-02-11 08:08'; # UTC
 # The definition above must lie within the first 8 lines in order
 # for the Emacs time-stamp write hook (at end) to update it.
 # If you change this file with Emacs, please let the write hook
@@ -85,8 +85,8 @@
 }
 
 {
-  sub EXIT_NO_MATCH {0}
-  sub EXIT_MATCH {1}
+  sub EXIT_MATCH {0}
+  sub EXIT_NO_MATCH {1}
   sub EXIT_ERROR {2}
   my $err = EXIT_NO_MATCH;