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:
Yang Xu
2019-12-30 10:57:57 +08:00
committed by Eryu Guan
parent a0b0287cb7
commit c09db96d31
+1 -1
View File
@@ -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;
}