Skip to content

Commit 7711331

Browse files
authored
Correct path.
1 parent 2a67ad7 commit 7711331

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mem/x86_64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ pub unsafe fn compare_bytes(a: *const u8, b: *const u8, n: usize) -> i32 {
177177
pub unsafe fn c_string_length(s: *const std::ffi::c_char) -> usize {
178178
let mut n: usize;
179179

180-
std::arch::asm!(
180+
asm!(
181181
// search for a zero byte
182182
"xor al, al",
183183

0 commit comments

Comments
 (0)