diff options
author | Bernhard Voelker <mail@bernhard-voelker.de> | 2011-06-21 10:10:39 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-06-21 14:37:53 +0200 |
commit | 6301c72b6f79281c13f05b80aff3cf14f4d35db8 (patch) | |
tree | 00f09fe8d7891a2d79fe22fabbe6864b1abf0dca /tests/cp/sparse-fiemap | |
parent | 1d919fbb7fc5e75e3bf2835f9e2fccbe179b7d69 (diff) | |
download | coreutils-6301c72b6f79281c13f05b80aff3cf14f4d35db8.tar.xz |
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.
Diffstat (limited to 'tests/cp/sparse-fiemap')
-rwxr-xr-x | tests/cp/sparse-fiemap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cp/sparse-fiemap b/tests/cp/sparse-fiemap index 3d340777b..37d8ea7a4 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 |