From f6c23565901561cfe1d7c3c29266ee60ce1f7bdd Mon Sep 17 00:00:00 2001 From: Determinant Date: Mon, 25 May 2015 16:12:15 +0800 Subject: ... --- io/param.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io') diff --git a/io/param.c b/io/param.c index 91c4d26..7e776a8 100644 --- a/io/param.c +++ b/io/param.c @@ -39,7 +39,7 @@ size_t read_param_header_plain(FILE *fp, int *status) { for (i = 0; i < PARAM_HEADER_SIZE; i++) if (isdigit(buff[i])) size = size * 10 + buff[i] - '0'; - fprintf(stderr, "header: %d\n", size); + fprintf(stderr, "header: %lu\n", size); return size; } @@ -145,7 +145,7 @@ int nerv_param_file_open_read(lua_State *L, const char *fn) { pci = (ParamChunkInfo *)malloc(sizeof(ParamChunkInfo)); pci->offset = ftello(fp); pci->length = param_len - (pci->offset - offset); - fprintf(stderr, "%d + %d (skip %d)\n", (int)pci->offset, + fprintf(stderr, "%d + %d (skip %lu)\n", (int)pci->offset, (int)pci->length, param_len); luaT_pushudata(L, pci, nerv_param_chunk_info_tname); lua_setfield(L, -2, "chunk"); -- cgit v1.2.3