summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2024-11-06 10:56:25 -0500
committerMason Reed <mason@vector35.com>2024-11-07 16:23:37 -0500
commite95e1bea09ba34f64b1243fa370a7774dbc9caa3 (patch)
tree966be1cd18f833072ba9177b5796b7a88c86aece /plugins
parent5bef8084fbb460531604655fcd0bf5b63f780599 (diff)
WARP: Remove useless warning
This only happens when we are generating signatures, those don't need to be in the cache to get built
Diffstat (limited to 'plugins')
-rw-r--r--plugins/warp/src/cache.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/warp/src/cache.rs b/plugins/warp/src/cache.rs
index 025c37df..e002c795 100644
--- a/plugins/warp/src/cache.rs
+++ b/plugins/warp/src/cache.rs
@@ -296,10 +296,7 @@ impl GUIDCache {
self.cache.insert(function_id, function_guid);
function_guid
}
- TryResult::Locked => {
- log::warn!("Failed to acquire function guid cache");
- function_guid(function, llil)
- }
+ TryResult::Locked => function_guid(function, llil),
}
}