generic/001: remove unnecessary backslash

Awk 5.0.1 is complaining about this backslash and causing false alarm
like this:
    warning: regexp escape sequence '\#' is not a known regexp operator

This fix works fine with Awk 3.1.7 , 4.0.2 , 4.2.1 and 5.0.1. This
backslash is not necessary.

Signed-off-by: Murphy Zhou <jencce.kernel@gmail.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
This commit is contained in:
Murphy Zhou
2019-10-09 13:34:34 +08:00
committed by Eryu Guan
parent 17c22e556f
commit 95a2510bb1
+1 -1
View File
@@ -177,7 +177,7 @@ _chain()
{
$AWK_PROG -v full_file=$seqres.full -v verify=$verify <$tmp.config '
BEGIN { nfile = 0 }
/^\#/ { next }
/^#/ { next }
{ file[nfile] = $1
size[nfile] = $2
link[nfile] = 0