From 88bf7224659432fbe54ca0a6865d888074090289 Mon Sep 17 00:00:00 2001 From: inrustwetrust Date: Wed, 27 Aug 2014 22:26:36 +0200 Subject: [PATCH] Changed target_os from "win32" to "windows" As of rust pull request 16435, cfg attributes now use "windows" instead of "win32" for the target_os parameter. --- src/sdl2/sdl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl2/sdl.rs b/src/sdl2/sdl.rs index 2129e1d5..ba1657ef 100644 --- a/src/sdl2/sdl.rs +++ b/src/sdl2/sdl.rs @@ -12,7 +12,7 @@ mod mac { extern {} } -#[cfg(target_os="win32")] +#[cfg(target_os="windows")] #[cfg(target_os="linux")] #[cfg(target_os="freebsd")] mod others {