Fix a typo in a log message

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2020-12-29 14:16:04 +01:00 committed by Victor Berger
parent 95fbce096c
commit 0f2faf6e91
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ impl X11Lock {
let _ = ::std::fs::remove_file(&filename); let _ = ::std::fs::remove_file(&filename);
Err(()) Err(())
} else { } else {
debug!(log, "X11 lock aquired"; "D" => display); debug!(log, "X11 lock acquired"; "D" => display);
// we got the lockfile and wrote our pid to it, all is good // we got the lockfile and wrote our pid to it, all is good
Ok(X11Lock { display, log }) Ok(X11Lock { display, log })
} }