mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
Clean up whitespace problems with 166.
Merge of master-melb:xfs-cmds:28941a by kenmcd. Don't leave trailing whitespace at EOL when filtering output.
This commit is contained in:
@@ -29,7 +29,12 @@ _cleanup()
|
||||
|
||||
_filter_blocks()
|
||||
{
|
||||
$AWK_PROG '/[0-9]/ { print $1, $2, "XX..YY", "AG", "(AA..BB)", $6, $7 }'
|
||||
$AWK_PROG '/[0-9]/ {
|
||||
if ($7)
|
||||
print $1, $2, "XX..YY", "AG", "(AA..BB)", $6, $7;
|
||||
else
|
||||
print $1, $2, "XX..YY", "AG", "(AA..BB)", $6;
|
||||
}'
|
||||
}
|
||||
|
||||
# real QA test starts here
|
||||
|
||||
Reference in New Issue
Block a user