summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorChristian Hermann <christian.hermann@hytera.de>2019-05-09 13:15:24 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-05-10 09:32:07 +0200
commitf2365fba1f4c3853cb93b3a138c91dda17b97ea9 (patch)
treee472dc8b4ca79e0a36cabedbe221c4b31bff4948 /scripts
parentd6a7e45b8e4a1e59ba3a40592e21554f923c2404 (diff)
downloadptxdist-f2365fba1f4c3853cb93b3a138c91dda17b97ea9.tar.gz
ptxdist-f2365fba1f4c3853cb93b3a138c91dda17b97ea9.tar.xz
ptxd_lib_dgen: fix warning
As experienced with gawk 5.0.0, `#` is needlessly escaped. Signed-off-by: Christian Hermann <christian.hermann@hytera.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/ptxd_lib_dgen.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/ptxd_lib_dgen.awk b/scripts/lib/ptxd_lib_dgen.awk
index f7143c028..f18648feb 100644
--- a/scripts/lib/ptxd_lib_dgen.awk
+++ b/scripts/lib/ptxd_lib_dgen.awk
@@ -55,7 +55,7 @@ FNR == 1 {
#
# skip comments and empty lines
#
-/^\#|^$/ {
+/^#|^$/ {
next;
}