summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi/src/packet/skesk.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-05-07 16:35:20 +0200
committerJustus Winter <justus@sequoia-pgp.org>2019-05-07 18:24:24 +0200
commitc0308304ad20cd702231572eba3dedb293bdc103 (patch)
tree0b1344e7adf4004c61008b3fe485b42b765db3c6 /openpgp-ffi/src/packet/skesk.rs
parent83a109af5039cb764aa9b7ffddc14bafd3d42dca (diff)
openpgp-ffi, ffi: Fix calling convention on Windows.
- Use `extern "C"` instead of `extern "system"`. The latter selects stdcall, which is only appropriate for talking to the Windows API.
Diffstat (limited to 'openpgp-ffi/src/packet/skesk.rs')
-rw-r--r--openpgp-ffi/src/packet/skesk.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp-ffi/src/packet/skesk.rs b/openpgp-ffi/src/packet/skesk.rs
index 5e5b6f5b..06653604 100644
--- a/openpgp-ffi/src/packet/skesk.rs
+++ b/openpgp-ffi/src/packet/skesk.rs
@@ -17,7 +17,7 @@ use RefRaw;
/// is not written to it. Either way, `key_len` is set to the size of
/// the session key.
#[::sequoia_ffi_macros::extern_fn] #[no_mangle]
-pub extern "system" fn pgp_skesk_decrypt(errp: Option<&mut *mut ::error::Error>,
+pub extern "C" fn pgp_skesk_decrypt(errp: Option<&mut *mut ::error::Error>,
skesk: *const Packet,
password: *const uint8_t,
password_len: size_t,