summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib.h b/lib.h
index 7f227b53..e3b89087 100644
--- a/lib.h
+++ b/lib.h
@@ -130,14 +130,14 @@ typedef struct {
cnum id;
cnum slot;
} slot_cache_entry_t;
+
typedef slot_cache_entry_t slot_cache_set_t[4];
-typedef slot_cache_set_t *slot_cache_t;
struct sym {
obj_common;
val name;
val package;
- slot_cache_t slot_cache;
+ slot_cache_set_t *slot_cache;
};
struct package {