summaryrefslogtreecommitdiff
path: root/view/sharedcache/api/sharedcache.cpp
diff options
context:
space:
mode:
authorWeiN76LQh <WeiN76LQh@github.com>2024-11-28 18:52:19 +0000
committerMason Reed <mason@vector35.com>2025-02-17 21:05:02 -0500
commit9fa3dd7b2f00fe2e988e319d3fdb83ee99e30cd0 (patch)
tree525177007cf41ddb69150955d462d5a51bbdd7c5 /view/sharedcache/api/sharedcache.cpp
parenta30831a814503b75a1fa6efeea1cd0a673c240d7 (diff)
[SharedCache] Define BackingCacheType
Split out from https://github.com/WeiN76LQh/binaryninja-api/tree/process-local-symbols
Diffstat (limited to 'view/sharedcache/api/sharedcache.cpp')
-rw-r--r--view/sharedcache/api/sharedcache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/sharedcache/api/sharedcache.cpp b/view/sharedcache/api/sharedcache.cpp
index a0c4e961..d9838057 100644
--- a/view/sharedcache/api/sharedcache.cpp
+++ b/view/sharedcache/api/sharedcache.cpp
@@ -102,7 +102,7 @@ namespace SharedCacheAPI {
{
BackingCache cache;
cache.path = value[i].path;
- cache.isPrimary = value[i].isPrimary;
+ cache.cacheType = value[i].cacheType;
for (size_t j = 0; j < value[i].mappingCount; j++)
{
BackingCacheMapping mapping;