aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoe Wilm <joe@jwilm.com>2017-08-09 13:24:03 -0500
committerJoe Wilm <jwilm@users.noreply.github.com>2017-08-11 08:29:56 -0700
commitdd7eb92d68e8c8292d6359f42a74888878de0560 (patch)
treebf13de532a509c26a03f6d86ce23f291ae2b759c /src
parentf041ce0f59ab52bedae963b6fb2666b6e97f6455 (diff)
downloadalacritty-dd7eb92d68e8c8292d6359f42a74888878de0560.tar.gz
alacritty-dd7eb92d68e8c8292d6359f42a74888878de0560.zip
Fix warnings on macOS
Diffstat (limited to 'src')
-rw-r--r--src/window.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.rs b/src/window.rs
index 342e9b7c..83274f83 100644
--- a/src/window.rs
+++ b/src/window.rs
@@ -313,7 +313,7 @@ impl Window {
}
#[cfg(not(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "openbsd")))]
- pub fn send_xim_spot(&self, x: i16, y: i16) {
+ pub fn send_xim_spot(&self, _x: i16, _y: i16) {
}
#[cfg(not(target_os = "macos"))]