diff options
| author | Mason Reed <mason@vector35.com> | 2024-11-07 16:46:57 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2024-11-08 03:13:53 -0500 |
| commit | 66b7926e976185111dbbf1ccb6696bddde6555de (patch) | |
| tree | 702efc2f568cc13d7079a49efdd820406f45d87d /plugins/warp/src/lib.rs | |
| parent | d6e1624cff2b5d5eac57e0bf99ca1dac8437f9a5 (diff) | |
WARP: Remove unneeded ref in type conversion
Diffstat (limited to 'plugins/warp/src/lib.rs')
| -rw-r--r-- | plugins/warp/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/warp/src/lib.rs b/plugins/warp/src/lib.rs index 4240c79f..d098cd5b 100644 --- a/plugins/warp/src/lib.rs +++ b/plugins/warp/src/lib.rs @@ -32,7 +32,7 @@ pub fn build_function<A: Architecture, M: FunctionMutability, V: NonSSAVariant>( Function { guid: cached_function_guid(func, llil), symbol: from_bn_symbol(&func.symbol()), - ty: from_bn_type(&func.view(), bn_fn_ty, 255), + ty: from_bn_type(&func.view(), &bn_fn_ty, 255), constraints: FunctionConstraints { // NOTE: Adding adjacent only works if analysis is complete. adjacent: cached_adjacency_constraints(func), |
