fixed missing ;

This commit is contained in:
Christoph Klaffl 2020-01-17 01:04:16 +01:00
parent e5c998c71d
commit 2de006072f
No known key found for this signature in database
GPG Key ID: 8FC1D76EED4970D2
1 changed files with 1 additions and 1 deletions

2
sanoid
View File

@ -1402,7 +1402,7 @@ sub checklock {
close FH;
# if we didn't get exactly 2 items from the lock file there is a problem
if (scalar(@lock) != 2) {
warn "WARN: deleting invalid $lockfile\n"
warn "WARN: deleting invalid $lockfile\n";
unlink $lockfile;
return 1
}