aboutsummaryrefslogtreecommitdiff
path: root/src/base/fs
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-12-05 11:55:10 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-12-05 12:02:10 -0800
commitc200dd832789afa298ba45e0b9efdec96c0e92cc (patch)
tree4dc5622468a23acfd747e7778eeb9132266d7c9b /src/base/fs
parent8eedf5bdb05c2df0cd339f8742dc4f1752e8aaae (diff)
Chore: simplified allocator interfaces.
I was never happy with the allocator/reallocator split. It was originally designed to accomodate things like arenas that don't free. But the majority of the time you don't care about this.
Diffstat (limited to 'src/base/fs')
-rw-r--r--src/base/fs/walk.c2
-rw-r--r--src/base/fs/walker.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/base/fs/walk.c b/src/base/fs/walk.c
index 4b0d0aa..612aca8 100644
--- a/src/base/fs/walk.c
+++ b/src/base/fs/walk.c
@@ -6,7 +6,7 @@
static int
morehistory(fs·History *h, int n)
{
- SET_GROW(h, struct Key, n, hash, sys·Memory, nil);
+ SET_GROW(h, struct Key, n, hash, base·Memory, nil);
}
static int
diff --git a/src/base/fs/walker.c b/src/base/fs/walker.c
index d988d13..0a0f61e 100644
--- a/src/base/fs/walker.c
+++ b/src/base/fs/walker.c
@@ -3,7 +3,7 @@
static void
delete(fs·History *h)
{
- SET_FREE(h, sys·Memory, nil);
+ SET_FREE(h, base·Memory, nil);
}
int