diff options
Diffstat (limited to 'vendor/librune/lib/builder/u8strfit.c')
-rw-r--r-- | vendor/librune/lib/builder/u8strfit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/librune/lib/builder/u8strfit.c b/vendor/librune/lib/builder/u8strfit.c index c59b4b0..d0f0ecb 100644 --- a/vendor/librune/lib/builder/u8strfit.c +++ b/vendor/librune/lib/builder/u8strfit.c @@ -4,8 +4,8 @@ #include "internal/common.h" -struct u8buf * -u8strfit(struct u8buf *b) +struct u8str * +u8strfit(struct u8str *b) { return (b->p = realloc(b->p, b->len)) ? b : nullptr; } |