winedump: Cast-qual warnings fix.

This commit is contained in:
Andrew Talbot 2006-12-03 18:24:25 +00:00 committed by Alexandre Julliard
parent 1ce977d672
commit 25d1dc81d6
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ static int dump_location(void)
printf("Volume ofs = %08x ", loc->dwVolTableOfs);
if (loc->dwVolTableOfs && (loc->dwVolTableOfs<loc->dwTotalSize))
{
LOCAL_VOLUME_INFO *vol = (LOCAL_VOLUME_INFO *) &p[loc->dwVolTableOfs];
const LOCAL_VOLUME_INFO *vol = (const LOCAL_VOLUME_INFO *)&p[loc->dwVolTableOfs];
printf("size %d type %d serial %08x label %d ",
vol->dwSize, vol->dwType, vol->dwVolSerial, vol->dwVolLabelOfs);