Skip to content

Commit cb2a912

Browse files
committed
Fix objc_msgSend_fpret
1 parent 56cbcb4 commit cb2a912

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

objc-sys/src/message.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ extern_c! {
7676
// __x86_64__ and __i386__
7777

7878
/// Only available on `target_arch = "x86_64"` or `target_arch = "x86"`
79-
#[cfg(any(not(objfw), target_arch = "x86_64", target_arch = "x86"))]
79+
#[cfg(all(not(objfw), any(target_arch = "x86_64", target_arch = "x86")))]
8080
pub fn objc_msgSend_fpret();
8181
// objc_msgSend_fpret_debug
8282

0 commit comments

Comments
 (0)