Skip to content

Commit 727a15f

Browse files
author
James Duley
committed
Fix aarch64 typo
1 parent ef4d1c4 commit 727a15f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/ffi.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ impl fmt::Debug for c_void {
4747
/// Basic implementation of a `va_list`.
4848
#[cfg(any(all(not(target_arch = "aarch64"), not(target_arch = "powerpc"),
4949
not(target_arch = "x86_64")),
50-
all(target_arch = "aarch4", target_os = "ios"),
50+
all(target_arch = "aarch64", target_os = "ios"),
5151
windows))]
5252
#[unstable(feature = "c_variadic",
5353
reason = "the `c_variadic` feature has not been properly tested on \
@@ -193,7 +193,7 @@ impl<'a> VaList<'a> {
193193
where F: for<'copy> FnOnce(VaList<'copy>) -> R {
194194
#[cfg(any(all(not(target_arch = "aarch64"), not(target_arch = "powerpc"),
195195
not(target_arch = "x86_64")),
196-
all(target_arch = "aarch4", target_os = "ios"),
196+
all(target_arch = "aarch64", target_os = "ios"),
197197
windows))]
198198
let mut ap = va_copy(self);
199199
#[cfg(all(any(target_arch = "aarch64", target_arch = "powerpc", target_arch = "x86_64"),

0 commit comments

Comments
 (0)