From 70d277327e0f7fc74cfa8f73e1aea2a735627436 Mon Sep 17 00:00:00 2001 From: Christoph Hellwig Date: Mon, 15 Feb 2010 10:00:46 +0100 Subject: [PATCH] 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 --- 219 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/219 b/219 index e18418065..13e1919bd 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 -- 2.50.1