From 66b7926e976185111dbbf1ccb6696bddde6555de Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Thu, 7 Nov 2024 16:46:57 -0500 Subject: WARP: Remove unneeded ref in type conversion --- plugins/warp/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/warp/src/lib.rs') 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( 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), -- cgit v1.3.1