aboutsummaryrefslogtreecommitdiff
path: root/src/base/fmt/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/fmt/buffer.c')
-rw-r--r--src/base/fmt/buffer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/fmt/buffer.c b/src/base/fmt/buffer.c
index 0099e72..e039577 100644
--- a/src/base/fmt/buffer.c
+++ b/src/base/fmt/buffer.c
@@ -7,7 +7,7 @@ flush(fmt·State *io)
char *s;
void *heap = io->heap;
- mem·Reallocator mem = io->mem;
+ mem·Allocator mem = io->mem;
if(!io->buffer.beg)
return 0;
@@ -29,7 +29,7 @@ flush(fmt·State *io)
}
int
-fmt·make(mem·Reallocator mem, void *heap, fmt·State *io)
+fmt·make(mem·Allocator mem, void *heap, fmt·State *io)
{
int n;
@@ -53,7 +53,7 @@ void
fmt·free(fmt·State *io)
{
void *heap = io->heap;
- mem·Reallocator mem = io->mem;
+ mem·Allocator mem = io->mem;
mem.free(heap, io->buffer.beg);
io->buffer.beg = io->buffer.cur = io->buffer.end = nil;