From: Fabian Keil Date: Fri, 28 Feb 2020 09:46:22 +0000 (+0100) Subject: tests/badsymbols.pl: when opening '$incdir' fails include it in the error message X-Git-Tag: curl-7_76_0~198 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e11e5b2d4604df89a5be9495ac5fb6187a70d1de;p=thirdparty%2Fcurl.git tests/badsymbols.pl: when opening '$incdir' fails include it in the error message --- diff --git a/tests/badsymbols.pl b/tests/badsymbols.pl index d9766cad71..2ef803aafc 100755 --- a/tests/badsymbols.pl +++ b/tests/badsymbols.pl @@ -132,7 +132,7 @@ sub scanheader { } -opendir(my $dh, $incdir) || die "Can't opendir: $!"; +opendir(my $dh, $incdir) || die "Can't opendir $incdir: $!"; my @hfiles = grep { /\.h$/ } readdir($dh); closedir $dh;