maint: update all copyright year number ranges
[gnulib.git] / tests / test-xstrtol.c
index 6aa5e89..c07e295 100644 (file)
@@ -1,6 +1,5 @@
 /* Test of xstrtol module.
-   Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-   2006, 2007, 2008 Free Software Foundation, Inc.
+   Copyright (C) 1995-1996, 1998-2001, 2003-2013 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
@@ -54,13 +53,13 @@ main (int argc, char **argv)
 
       s_err = __xstrtol (argv[i], &p, 0, &val, "bckMw0");
       if (s_err == LONGINT_OK)
-       {
-         printf ("%s->%" __spec " (%s)\n", argv[i], val, p);
-       }
+        {
+          printf ("%s->%" __spec " (%s)\n", argv[i], val, p);
+        }
       else
-       {
-         xstrtol_fatal (s_err, -2, 'X', NULL, argv[i]);
-       }
+        {
+          xstrtol_fatal (s_err, -2, 'X', NULL, argv[i]);
+        }
     }
   exit (0);
 }