From 88af5bf5ecfebe1683ab449213d218de7871cc92 Mon Sep 17 00:00:00 2001 From: Jason Campbell Date: Wed, 21 Dec 2016 13:28:08 -0800 Subject: [PATCH] Removes magenta build warning. Small bug fix to remove an unused type in the magenta process code that causes build failures for magenta's rustc. --- src/libstd/sys/unix/process/magenta.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libstd/sys/unix/process/magenta.rs b/src/libstd/sys/unix/process/magenta.rs index 319fbce35cd7b..2bb005be4ec93 100644 --- a/src/libstd/sys/unix/process/magenta.rs +++ b/src/libstd/sys/unix/process/magenta.rs @@ -23,7 +23,6 @@ pub type mx_rights_t = u32; pub type mx_status_t = i32; pub type mx_size_t = usize; -pub type mx_ssize_t = isize; pub const MX_HANDLE_INVALID: mx_handle_t = 0;