maint: update copyright
[gnulib.git] / tests / test-pipe-filter-gi2-child.c
index 858ac26..d79aa87 100644 (file)
@@ -1,6 +1,6 @@
 /* Child program invoked by test-pipe-filter-gi2-main.
 
-   Copyright (C) 2009 Free Software Foundation, Inc.
+   Copyright (C) 2009-2014 Free Software Foundation, Inc.
    Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
 
    This program is free software: you can redistribute it and/or modify
@@ -31,13 +31,13 @@ main ()
       int i, j;
 
       if (scanf (" %d", &i) != 1)
-       break;
+        break;
       if (scanf (" %d", &j) != 1)
-       break;
+        break;
       if (j == -1)
-       exit (i);
+        exit (i);
       while (i <= j)
-       printf ("abcdefghijklmnopqrstuvwxyz%d\n", i++);
+        printf ("abcdefghijklmnopqrstuvwxyz%d\n", i++);
     }
   exit (0);
 }