diff options
author | Esption <esption@gmail.com> | 2015-05-08 12:31:56 -0500 |
---|---|---|
committer | Esption <esption@gmail.com> | 2015-05-08 12:31:56 -0500 |
commit | c973a1f83e2f9cea017e9dd48c4acaeb23fe5eb7 (patch) | |
tree | 64a7282c58e3ad6e7de4221b27840caeb857bd87 /src/api/wayland | |
parent | 0d10dda72a3d56ec137da0359b2f46fc75b7aaa9 (diff) | |
download | glutin-c973a1f83e2f9cea017e9dd48c4acaeb23fe5eb7.tar.gz glutin-c973a1f83e2f9cea017e9dd48c4acaeb23fe5eb7.zip |
Fixed build warnings
Diffstat (limited to 'src/api/wayland')
-rw-r--r-- | src/api/wayland/mod.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/api/wayland/mod.rs b/src/api/wayland/mod.rs index d2ca990..31e9243 100644 --- a/src/api/wayland/mod.rs +++ b/src/api/wayland/mod.rs @@ -1,4 +1,5 @@ #![cfg(target_os = "linux")] +#![allow(unused_variables, dead_code)] use self::wayland::egl::{EGLSurface, is_egl_available}; use self::wayland::core::{Display, Registry, Compositor, Shell, ShellSurface, @@ -258,7 +259,7 @@ impl Window { wayland_context.register_surface(shell_surface.get_wsurface().get_id(), events.clone()); - wayland_context.display.flush(); + wayland_context.display.flush().unwrap(); Ok(Window { shell_surface: shell_surface, @@ -375,4 +376,4 @@ impl Drop for Window { ctxt.deregister_surface(self.shell_surface.get_wsurface().get_id()) } } -}
\ No newline at end of file +} |