Skip to content

Commit

Permalink
libstd: deny(elided_lifetimes_in_paths), fixes in redox
Browse files Browse the repository at this point in the history
  • Loading branch information
Centril committed Mar 31, 2019
1 parent 351a20c commit 1d9508a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/sys/redox/backtrace/tracing.rs
Expand Up @@ -37,7 +37,7 @@ pub fn unwind_backtrace(frames: &mut [Frame])
};
let result_unwind = unsafe {
uw::_Unwind_Backtrace(trace_fn,
&mut cx as *mut Context
&mut cx as *mut Context<'_>
as *mut libc::c_void)
};
// See libunwind:src/unwind/Backtrace.c for the return values.
Expand Down

0 comments on commit 1d9508a

Please sign in to comment.