diff options
Diffstat (limited to 'vendor/librune/lib/builder/u8strgrow.c')
-rw-r--r-- | vendor/librune/lib/builder/u8strgrow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/librune/lib/builder/u8strgrow.c b/vendor/librune/lib/builder/u8strgrow.c index 253fcfc..022b216 100644 --- a/vendor/librune/lib/builder/u8strgrow.c +++ b/vendor/librune/lib/builder/u8strgrow.c @@ -6,8 +6,8 @@ static size_t nextpow2(size_t); -struct u8buf * -u8strgrow(struct u8buf *b, size_t n) +struct u8str * +u8strgrow(struct u8str *b, size_t n) { if (n > b->cap) { b->cap = nextpow2(n); |