Revert last patch.
[gnulib.git] / lib / human.c
index 5b31d06..ecf4c97 100644 (file)
@@ -1,7 +1,7 @@
 /* human.c -- print human readable file size
 
    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-   2005, 2006, 2007 Free Software Foundation, Inc.
+   2005, 2006 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -464,8 +464,7 @@ humblock (char const *spec, uintmax_t *block_size, int *options)
 }
 
 int
-human_options (char const *spec, bool report_errors, char const *option,
-              uintmax_t *block_size)
+human_options (char const *spec, bool report_errors, uintmax_t *block_size)
 {
   int opts;
   strtol_error e = humblock (spec, block_size, &opts);
@@ -475,6 +474,6 @@ human_options (char const *spec, bool report_errors, char const *option,
       e = LONGINT_INVALID;
     }
   if (e != LONGINT_OK && report_errors)
-    STRTOL_FATAL_ERROR (spec, option, e);
+    STRTOL_FATAL_ERROR (spec, _("block size"), e);
   return opts;
 }