summaryrefslogtreecommitdiffstats
path: root/lib/imsg-buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/imsg-buffer.c')
-rw-r--r--lib/imsg-buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/imsg-buffer.c b/lib/imsg-buffer.c
index ba1e26820..b83f1f76f 100644
--- a/lib/imsg-buffer.c
+++ b/lib/imsg-buffer.c
@@ -59,7 +59,7 @@ struct ibuf *ibuf_dynamic(size_t len, size_t max)
int ibuf_realloc(struct ibuf *buf, size_t len)
{
- u_char *b;
+ uint8_t *b;
/* on static buffers max is eq size and so the following fails */
if (buf->wpos + len > buf->max) {