]> www.infradead.org Git - users/hch/xfstests-dev.git/commitdiff
xfstests: fix awk syntax error in 219
authorChristoph Hellwig <hch@lst.de>
Mon, 15 Feb 2010 09:00:46 +0000 (10:00 +0100)
committerChristoph Hellwig <hch@lst.de>
Mon, 15 Feb 2010 09:00:46 +0000 (10:00 +0100)
There's one brace too many here - this was pointed out in the review
but slipped back into the commited patch.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <david@fromorbit.com>
219

diff --git a/219 b/219
index e18418065f52b72a74c3d1c89fec08941df2ff7d..13e1919bd3cfcea6b4449650946736d8449eaf0a 100755 (executable)
--- a/219
+++ b/219
@@ -86,7 +86,7 @@ test_accounting()
        done
 
        repquota -$type -s -n $SCRATCH_MNT  | grep -v "^#0" | filter_scratch |
-       awk '/^#/ { if (seen[$1]) next; seen[$1]++; } { print; }'
+       awk '/^#/ { if (seen[$1]) next; seen[$1]++; } { print; }'
 }
 
 # real QA test starts here