aboutsummaryrefslogtreecommitdiffstats
path: root/examples/window.rs
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2014-12-23 17:12:29 +0100
committerPierre Krieger <pierre.krieger1708@gmail.com>2014-12-23 17:12:29 +0100
commitdbb82968baf17acdc341303813ecbbd8420de19c (patch)
treeba6094cbabbc260a3e16ea3e9d1c7a23f103fcf9 /examples/window.rs
parent5a8982377b13379edef913805b488afb60424045 (diff)
downloadglutin-dbb82968baf17acdc341303813ecbbd8420de19c.tar.gz
glutin-dbb82968baf17acdc341303813ecbbd8420de19c.zip
Update for rustc
Diffstat (limited to 'examples/window.rs')
-rw-r--r--examples/window.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/window.rs b/examples/window.rs
index 400aa84..910d6e6 100644
--- a/examples/window.rs
+++ b/examples/window.rs
@@ -23,7 +23,7 @@ fn resize_callback(width: uint, height: uint) {
fn main() {
let mut window = glutin::Window::new().unwrap();
window.set_title("A fantastic window!");
- window.set_window_resize_callback(Some(resize_callback));
+ window.set_window_resize_callback(Some(resize_callback as fn(uint, uint)));
unsafe { window.make_current() };
let context = support::load(&window);