From: Christoph Hellwig Date: Mon, 15 Feb 2010 09:00:46 +0000 (+0100) Subject: xfstests: fix awk syntax error in 219 X-Git-Tag: v1.1.0~192 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=70d277327e0f7fc74cfa8f73e1aea2a735627436;p=xfstests-dev.git xfstests: fix awk syntax error in 219 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 Reviewed-by: Dave Chinner --- diff --git a/219 b/219 index e1841806..13e1919b 100755 --- 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