Avoid gcc warning:

vcd_read_win32.h:61: warning: format '%u' expects type 'unsigned int',
but argument 4 has type 'DWORD'


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25187 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
zuxy 2007-11-28 11:36:23 +00:00
parent ea9b477dc7
commit c869211a95
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ mp_vcd_priv_t* vcd_read_toc(int fd)
hd = (HANDLE)_get_osfhandle(fd);
if (!DeviceIoControl(hd, IOCTL_CDROM_READ_TOC, NULL, 0, &vcd->toc,
sizeof(CDROM_TOC), &dwBytesReturned, NULL)) {
mp_msg(MSGT_OPEN, MSGL_ERR, "read CDROM toc header: %u\n",
mp_msg(MSGT_OPEN, MSGL_ERR, "read CDROM toc header: %lu\n",
GetLastError());
free(vcd);
return NULL;