From 368bafd8a65b626031e6ef055bb8b492f77f31c6 Mon Sep 17 00:00:00 2001 From: Richard Nyberg Date: Sat, 15 Jul 2006 12:31:11 +0000 Subject: [PATCH] Fix type mismath. From Arnaud Bergeron. --- cli/btpd_if.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/btpd_if.c b/cli/btpd_if.c index c15ce08..241a1c0 100644 --- a/cli/btpd_if.c +++ b/cli/btpd_if.c @@ -109,7 +109,7 @@ ipc_buf_req(struct ipc *ipc, struct io_buffer *iob) { int err; char *res; - size_t reslen; + uint32_t reslen; err = ipc_req_res(ipc, iob->buf, iob->buf_off, &res, &reslen); free(iob->buf);