Author: pschweitzer Date: Tue Aug 11 21:25:08 2015 New Revision: 68699
URL: http://svn.reactos.org/svn/reactos?rev=68699&view=rev Log: [HHPCOMP] - Fix warnings
Modified: trunk/reactos/tools/hhpcomp/chmc/chmc.c
Modified: trunk/reactos/tools/hhpcomp/chmc/chmc.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/hhpcomp/chmc/chmc.c?r... ============================================================================== --- trunk/reactos/tools/hhpcomp/chmc/chmc.c [iso-8859-1] (original) +++ trunk/reactos/tools/hhpcomp/chmc/chmc.c [iso-8859-1] Tue Aug 11 21:25:08 2015 @@ -994,7 +994,7 @@ 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 @@ 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++; }