From 0e7a15846d6969cbdebd01ea9bb7018b20b3be13 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Tue, 11 Aug 2015 21:25:08 +0000 Subject: [PATCH] [HHPCOMP] - Fix warnings svn path=/trunk/; revision=68699 --- reactos/tools/hhpcomp/chmc/chmc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/tools/hhpcomp/chmc/chmc.c b/reactos/tools/hhpcomp/chmc/chmc.c index 2978cbf4051..0a3709ef258 100644 --- a/reactos/tools/hhpcomp/chmc/chmc.c +++ b/reactos/tools/hhpcomp/chmc/chmc.c @@ -994,7 +994,7 @@ static void _lzx_mark_frame(void *arg, uint32_t uncomp, uint32_t comp) UInt64 compressed; chmc_dump( "Aligned data at %d(in compressed stream, %d) (%lu/%lu)\n", - uncomp, comp, lzx_info->done, lzx_info->todo ); + uncomp, comp, (unsigned long)lzx_info->done, (unsigned long)lzx_info->todo ); compressed = comp; @@ -1497,7 +1497,7 @@ int chmc_pmgi_done(struct chmcFile *chm) chmc_pmgi_add_entry(chm, name, i); } else - BUG_ON("name_len >= 255(%lu) %.*s\n", name_len, 255, + BUG_ON("name_len >= 255(%lu) %.*s\n", (unsigned long)name_len, 255, &pmgl->chunk.data[j]); i++; }