From: Bernhard Voelker Date: Tue, 21 Jun 2011 08:10:39 +0000 (+0200) Subject: tests: cp/sparse-fiemap: use "head -n99" in place of "head -99" X-Git-Tag: v8.13~99 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6301c72b6f79281c13f05b80aff3cf14f4d35db8;p=thirdparty%2Fcoreutils.git tests: cp/sparse-fiemap: use "head -n99" in place of "head -99" * tests/cp/sparse-fiemap: Use "head -n99" in place of "head -99". The latter is officially obsolete. --- diff --git a/tests/cp/sparse-fiemap b/tests/cp/sparse-fiemap index 3d340777b8..37d8ea7a43 100755 --- a/tests/cp/sparse-fiemap +++ b/tests/cp/sparse-fiemap @@ -106,7 +106,7 @@ for i in $(seq 1 2 21); do || { warn_ ignoring filefrag-reported extent map differences # Show the differing extent maps. - head -99 ff1 ff2 + head -n99 ff1 ff2 } fi test $fail = 1 && break 2