X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-pipe-filter-gi2-child.c;h=dfef6b7dc709b2eade7f98c38d9a107a22cdb1cf;hb=208e667b5f8c696e723da34171fbaa6f01246f3b;hp=858ac26076d662bb1194fe2394104ca11687f522;hpb=8ae6a07d62256797e8ddcc918ff3e4f10ff69417;p=gnulib.git diff --git a/tests/test-pipe-filter-gi2-child.c b/tests/test-pipe-filter-gi2-child.c index 858ac2607..dfef6b7dc 100644 --- a/tests/test-pipe-filter-gi2-child.c +++ b/tests/test-pipe-filter-gi2-child.c @@ -1,6 +1,6 @@ /* Child program invoked by test-pipe-filter-gi2-main. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009-2011 Free Software Foundation, Inc. Written by Paolo Bonzini , 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); }