diff --git a/Cargo.toml b/Cargo.toml index 51c07ed..c72d482 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cpal" -version = "0.1.0" +version = "0.1.1" authors = ["Pierre Krieger "] description = "Cross-platform audio playing library in pure Rust." repository = "https://github.com/tomaka/cpal" @@ -13,19 +13,19 @@ keywords = ["audio", "sound"] libc = "*" [target.i686-pc-windows-gnu.dependencies] -winapi = "0.1.19" +winapi = "0.2.1" ole32-sys = "0.1" [target.x86_64-pc-windows-gnu.dependencies] -winapi = "0.1.19" +winapi = "0.2.1" ole32-sys = "0.1" [target.i686-pc-windows-msvc.dependencies] -winapi = "0.1.19" +winapi = "0.2.1" ole32-sys = "0.1" [target.x86_64-pc-windows-msvc.dependencies] -winapi = "0.1.19" +winapi = "0.2.1" ole32-sys = "0.1" [target.i686-unknown-linux-gnu.dependencies.alsa-sys] diff --git a/src/wasapi/mod.rs b/src/wasapi/mod.rs index 2631730..0939807 100644 --- a/src/wasapi/mod.rs +++ b/src/wasapi/mod.rs @@ -209,7 +209,7 @@ fn init() -> Result { 0, 10000000, 0, format, ptr::null()); if !format_ptr.is_null() { - ole32::CoTaskMemFree(format_ptr as *mut libc::c_void); + ole32::CoTaskMemFree(format_ptr as *mut _); } try!(check_result(hresult));