Correct path.

This commit is contained in:
Tobias Decking 2023-02-21 23:32:39 +01:00 committed by GitHub
parent a11bd1cfdb
commit 990596fa28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -177,7 +177,7 @@ pub unsafe fn compare_bytes(a: *const u8, b: *const u8, n: usize) -> i32 {
pub unsafe fn c_string_length(s: *const std::ffi::c_char) -> usize {
let mut n: usize;
std::arch::asm!(
asm!(
// search for a zero byte
"xor al, al",