extract-unit-protos: enable strict/warnings, fix them

This commit is contained in:
Viktor Szakats 2025-07-09 22:53:49 +02:00
parent c052bd176f
commit 13afb1bf10
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -23,6 +23,12 @@
#
###########################################################################
use strict;
use warnings;
my @proto;
my %inc;
sub scanfile {
my ($file) = @_;
open(F, "<$file") || die "$file failed";