summaryrefslogtreecommitdiffstats
path: root/tools/p1.pl
diff options
context:
space:
mode:
authorDirk Mueller <dmueller@suse.com>2026-02-16 11:21:21 +0100
committerGitHub <noreply@github.com>2026-02-16 11:21:21 +0100
commit423d0c52674bfa4ec49e4ae8bce645131f657f74 (patch)
treea27276c89d37e3753b5ead6abe56132f2801d444 /tools/p1.pl
parent0f0865c910096c95594ac09929708e84934e46df (diff)
downloadmonitoring-plugins-423d0c52674bfa4ec49e4ae8bce645131f657f74.tar.gz
Fix a few typos (#2231)
Diffstat (limited to 'tools/p1.pl')
-rw-r--r--tools/p1.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/p1.pl b/tools/p1.pl
index 9cbe6dc0..ea80c334 100644
--- a/tools/p1.pl
+++ b/tools/p1.pl
@@ -30,7 +30,7 @@ use IO::File;
30 30
31sub TIEHANDLE { 31sub TIEHANDLE {
32 my ($class, $fn) = @_; 32 my ($class, $fn) = @_;
33 my $handle = new IO::File "> $fn" or die "Cannot open embedded work filei $!\n"; 33 my $handle = new IO::File "> $fn" or die "Cannot open embedded work file $!\n";
34 bless { FH => $handle, Value => 0}, $class; 34 bless { FH => $handle, Value => 0}, $class;
35} 35}
36 36