summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp-ffi')
-rw-r--r--openpgp-ffi/src/common.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp-ffi/src/common.rs b/openpgp-ffi/src/common.rs
index ba2ce7d2..e6c67db4 100644
--- a/openpgp-ffi/src/common.rs
+++ b/openpgp-ffi/src/common.rs
@@ -244,7 +244,7 @@ pub(crate) trait RefRaw<T> {
/// Moves a mutable reference to an object from C to Rust.
pub(crate) trait RefMutRaw<T> {
/// Moves this mutable reference to an object from C to Rust.
- fn ref_mut_raw(self) -> &'static mut T;
+ fn ref_mut_raw(self) -> T;
}
/// Moves an object from Rust to C, releasing ownership.