From f59aa19892724f41e3a56817fb69e95413312920 Mon Sep 17 00:00:00 2001 From: Matthias Krüger Date: Sun, 9 Jun 2019 19:52:48 +0200 Subject: Fix compiler warnings --- alacritty_terminal/src/tty/unix.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'alacritty_terminal/src/tty/unix.rs') diff --git a/alacritty_terminal/src/tty/unix.rs b/alacritty_terminal/src/tty/unix.rs index 0cf1a821..cafa7027 100644 --- a/alacritty_terminal/src/tty/unix.rs +++ b/alacritty_terminal/src/tty/unix.rs @@ -194,6 +194,8 @@ pub fn new(config: &Config, size: &T, window_id: Option) -> builder.env("WINDOWID", format!("{}", window_id)); } + // TODO: Rust 1.34.0 + #[allow(deprecated)] builder.before_exec(move || { // Create a new process group unsafe { -- cgit v1.2.3-54-g00ecf