From 0f2faf6e9115df1bd4508bfc60b637b688878a8b Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Tue, 29 Dec 2020 14:16:04 +0100 Subject: [PATCH] Fix a typo in a log message Signed-off-by: Uli Schlachter --- src/xwayland/x11_sockets.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xwayland/x11_sockets.rs b/src/xwayland/x11_sockets.rs index 290a2ff..10085cc 100644 --- a/src/xwayland/x11_sockets.rs +++ b/src/xwayland/x11_sockets.rs @@ -45,7 +45,7 @@ impl X11Lock { let _ = ::std::fs::remove_file(&filename); Err(()) } 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 Ok(X11Lock { display, log }) }