From 370fb4f8c88dd64703b891488cca6ee2fd1ab01a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 14 Jul 2025 20:10:06 +0200 Subject: [PATCH] cdall: enable strict warnings --- scripts/cdall | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/cdall b/scripts/cdall index 507ccc6be2..aab41b6505 100755 --- a/scripts/cdall +++ b/scripts/cdall @@ -25,6 +25,9 @@ # provide all dir names to scan on the cmdline +use strict; +use warnings; + sub convert { my ($dir)=@_; opendir(my $dh, $dir) || die "could not open $dir";