fix posix from previous commit

This commit is contained in:
Andrew Kelley 2017-10-15 16:47:29 -04:00
parent fcef7c4bb2
commit faf64b5d0f

View File

@ -1432,7 +1432,7 @@ const unexpected_error_tracing = false;
/// Call this when you made a syscall or something that sets errno
/// and you get an unexpected error.
pub fn unexpectedErrorPosix(errno: c_int) -> error {
pub fn unexpectedErrorPosix(errno: usize) -> error {
if (unexpected_error_tracing) {
io.stderr.printf("unexpected errno: {}\n", errno) %% return;
debug.printStackTrace() %% return;