Skip to content

Commit 1d9508a

Browse files
committed
libstd: deny(elided_lifetimes_in_paths), fixes in redox
1 parent 351a20c commit 1d9508a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sys/redox/backtrace/tracing.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub fn unwind_backtrace(frames: &mut [Frame])
3737
};
3838
let result_unwind = unsafe {
3939
uw::_Unwind_Backtrace(trace_fn,
40-
&mut cx as *mut Context
40+
&mut cx as *mut Context<'_>
4141
as *mut libc::c_void)
4242
};
4343
// See libunwind:src/unwind/Backtrace.c for the return values.

0 commit comments

Comments
 (0)