mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 20:18:22 +00:00
[HHPCOMP]
- Fix warnings svn path=/trunk/; revision=68699
This commit is contained in:
parent
c106a075fe
commit
0e7a15846d
1 changed files with 2 additions and 2 deletions
|
@ -994,7 +994,7 @@ static void _lzx_mark_frame(void *arg, uint32_t uncomp, uint32_t comp)
|
||||||
UInt64 compressed;
|
UInt64 compressed;
|
||||||
|
|
||||||
chmc_dump( "Aligned data at %d(in compressed stream, %d) (%lu/%lu)\n",
|
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;
|
compressed = comp;
|
||||||
|
|
||||||
|
@ -1497,7 +1497,7 @@ int chmc_pmgi_done(struct chmcFile *chm)
|
||||||
chmc_pmgi_add_entry(chm, name, i);
|
chmc_pmgi_add_entry(chm, name, i);
|
||||||
}
|
}
|
||||||
else
|
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]);
|
&pmgl->chunk.data[j]);
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue