diff options
| author | Mason Reed <mason@vector35.com> | 2024-11-07 17:06:43 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2024-11-08 03:13:53 -0500 |
| commit | 33eb8129f5f95f379bff6a5ba90b5a298c8318d6 (patch) | |
| tree | 3dbfca210f865a678d19b9cfefe3367391d356d3 /plugins/warp/src/bin | |
| parent | 4fd3930ba732637bec62fd7f88d713de5f9c2a84 (diff) | |
WARP: Misc clippy lints
Diffstat (limited to 'plugins/warp/src/bin')
| -rw-r--r-- | plugins/warp/src/bin/sigem.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/warp/src/bin/sigem.rs b/plugins/warp/src/bin/sigem.rs index 322096ee..63c9a677 100644 --- a/plugins/warp/src/bin/sigem.rs +++ b/plugins/warp/src/bin/sigem.rs @@ -96,7 +96,7 @@ fn data_from_view(view: &BinaryView) -> Data { .collect::<Vec<_>>(); data.types.extend(view.types().iter().map(|ty| { let ref_ty = ty.type_object().to_owned(); - ComputedType::new(from_bn_type(&view, &ref_ty, u8::MAX)) + ComputedType::new(from_bn_type(view, &ref_ty, u8::MAX)) })); data } |
