xstrtol_error: Fix typo.
authorJim Meyering <meyering@redhat.com>
Sun, 10 Feb 2008 08:49:40 +0000 (09:49 +0100)
committerJim Meyering <meyering@redhat.com>
Sun, 10 Feb 2008 08:49:40 +0000 (09:49 +0100)
* lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
s/exit_failure/exit_status/.

ChangeLog
lib/xstrtol-error.c

index a60da367f000d7202377fc13838536189ed06f3e..c53a8a2d585ad9dac80643b112219c5fd489b98e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-02-10  Jim Meyering  <meyering@redhat.com>
+
+       xstrtol_error: Fix typo.
+       * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
+       s/exit_failure/exit_status/.
+
 2008-02-08  Jim Meyering  <meyering@redhat.com>
 
        Avoid two "parameter unused" warnings.
index 8d5718d8d8fd599ca4cc420e4f7513e228916bd2..67b5bf065bf49d9826fa453d7cb994af11aa6bf4 100644 (file)
@@ -1,6 +1,6 @@
 /* A more useful interface to strtol.
 
-   Copyright (C) 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007
+   Copyright (C) 1995, 1996, 1998, 1999, 2001-2004, 2006-2008
    Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
@@ -83,7 +83,7 @@ xstrtol_error (enum strtol_error err,
   else
     option = long_options[opt_idx].name;
 
-  error (exit_failure, 0, gettext (msgid), hyphens, option, arg);
+  error (exit_status, 0, gettext (msgid), hyphens, option, arg);
 }
 
 /* Like xstrtol_error, except exit with a failure status.  */