From ef9545cf712a123d8f6724c60d40261d7828ce0c Mon Sep 17 00:00:00 2001 From: Paul Sajna <paulsajna@gmail.com> Date: Sun, 4 Mar 2018 04:43:05 -0800 Subject: [PATCH] missing parens --- src/stdlib/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stdlib/src/lib.rs b/src/stdlib/src/lib.rs index 2a7a0c24c..91ddb0723 100644 --- a/src/stdlib/src/lib.rs +++ b/src/stdlib/src/lib.rs @@ -15,7 +15,7 @@ static ALLOCATOR: ralloc::Allocator = ralloc::Allocator; pub const EXIT_FAILURE: c_int = 1; pub const EXIT_SUCCESS: c_int = 0; -static mut ATEXIT_FUNCS: [Option<extern "C" fn>; 32] = [None; 32]; +static mut ATEXIT_FUNCS: [Option<extern "C" fn()>; 32] = [None; 32]; #[no_mangle] pub extern "C" fn a64l(s: *const c_char) -> c_long { -- GitLab