mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
generic/386: fill missing brackets in awk
Since commit ea726c4a55 to check the correct field from df output,
it introduced a syntax error. Fix it.
Reported-by: Feiyu Zhu <zhufy.jy@cn.fujitsu.com>
Signed-off-by: Yang Xu <xuyang2018.jy@cn.fujitsu.com>
Reviewed-by: Eryu Guan <guaneryu@gmail.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
This commit is contained in:
+1
-1
@@ -89,7 +89,7 @@ _filter_quota_rpt() {
|
||||
bsize = byte_size($4);
|
||||
} else if ($NF ~ proj_dir) {
|
||||
# this is the "df" output
|
||||
bsize = byte_size($NF-4));
|
||||
bsize = byte_size($(NF-4));
|
||||
} else {
|
||||
next;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user