summaryrefslogtreecommitdiff
path: root/rust/src/types.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/types.rs')
-rw-r--r--rust/src/types.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/rust/src/types.rs b/rust/src/types.rs
index 4f9d8bff..37a1330b 100644
--- a/rust/src/types.rs
+++ b/rust/src/types.rs
@@ -954,7 +954,7 @@ impl Type {
}
}
- pub fn function<'a, S: BnStrCompatible + Copy, T: Into<Conf<&'a Type>>>(
+ pub fn function<'a, S: BnStrCompatible + Clone, T: Into<Conf<&'a Type>>>(
return_type: T,
parameters: &[FunctionParameter<S>],
variable_arguments: bool,
@@ -998,7 +998,7 @@ impl Type {
};
unsafe {
- Self::ref_from_raw(BNCreateFunctionType(
+ Self::ref_from_raw(BNNewTypeReference(BNCreateFunctionType(
&mut return_type,
&mut raw_calling_convention,
raw_parameters.as_mut_ptr(),
@@ -1011,7 +1011,7 @@ impl Type {
0,
&mut return_regs,
BNNameType::NoNameType,
- ))
+ )))
}
}