On Mon, Jul 6, 2020 at 11:00 AM David Marchand <david.march...@redhat.com> wrote:
> 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: 7413e7f2aeb3 ("devtools: alert on new calls to exit from libs") > Cc: sta...@dpdk.org > > Signed-off-by: David Marchand <david.march...@redhat.com> > --- > devtools/check-forbidden-tokens.awk | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/devtools/check-forbidden-tokens.awk > b/devtools/check-forbidden-tokens.awk > index 8c89de3d4e..f86cbe8dc1 100755 > --- a/devtools/check-forbidden-tokens.awk > +++ b/devtools/check-forbidden-tokens.awk > @@ -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 > } > -- > 2.23.0 > > Acked-By: Arnon Warshavsky <ar...@qwilt.com>