Skip to content

Commit c8b1742

Browse files
committed
typo
1 parent 53a5d56 commit c8b1742

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sys/unix/backtrace/tracing/backtrace_fn.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pub fn unwind_backtrace(frames: &mut [Frame])
3131
{
3232
const FRAME_LEN: usize = 100;
3333
assert!(FRAME_LEN >= frames.len());
34-
let mut raw_frames = [::std::ptr::null_mut(); FRAME_LEN];
34+
let mut raw_frames = [::ptr::null_mut(); FRAME_LEN];
3535
let nb_frames = unsafe {
3636
backtrace(raw_frames.as_mut_ptr(), raw_frames.len() as libc::c_int)
3737
} as usize;

0 commit comments

Comments
 (0)