Merge pull request #478 from phreaker0/remove-invalid-locks

fixed missing ;
This commit is contained in:
Jim Salter 2020-01-17 17:47:18 -05:00 committed by GitHub
commit 29095052b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
}