From 0a7e36380717fe926d43ab30ef6162db9bd71723 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 4 Mar 2016 09:28:01 +0100 Subject: Add makefile and fix errors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/zload.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/zload.c') diff --git a/src/zload.c b/src/zload.c index 0f5d35b..c708453 100644 --- a/src/zload.c +++ b/src/zload.c @@ -1,14 +1,14 @@ /* See LICENSE file for copyright and license details. */ -#include "internals" +#include "internals.h" size_t zload(z_t a, const void *buffer) { const char *buf = buffer; - a->sign = *((int *)buf), buf += sizeof(int); - a->used = *((size_t *)buf), buf += sizeof(size_t); - a->alloced = *((size_t *)buf), buf += sizeof(size_t); + a->sign = *((const int *)buf), buf += sizeof(int); + a->used = *((const size_t *)buf), buf += sizeof(size_t); + a->alloced = *((const size_t *)buf), buf += sizeof(size_t); if (a->alloced) zahl_realloc(a, a->alloced); else -- cgit v1.2.3-70-g09d2