devtools: fix path in forbidden token check

Fix displayed filename by adjusting the extraction from the patch.

Before:
Warning in /lib/librte_eal/linux/eal.c:

After:
Warning in lib/librte_eal/linux/eal.c:

Fixes: 7413e7f2ae ("devtools: alert on new calls to exit from libs")
Cc: stable@dpdk.org

Signed-off-by: David Marchand <david.marchand@redhat.com>
This commit is contained in:
David Marchand 2020-07-06 10:00:21 +02:00 committed by Thomas Monjalon
parent cb4261e0bf
commit 8d4a222e12

View file

@ -62,7 +62,7 @@ BEGIN {
}
END {
if (count > 0) {
print "Warning in " substr(last_file,6) ":"
print "Warning in " substr(last_file,7) ":"
print MESSAGE
exit RET_ON_FAIL
}