1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-04 09:11:33 +02:00

winvlc: fix format string

This commit is contained in:
Rémi Denis-Courmont 2016-10-12 00:03:42 +03:00
parent 393025e016
commit e9ca045296

View File

@ -251,15 +251,15 @@ static void check_crashdump(void)
}
else
{
fprintf(stderr,"Can't connect to FTP server 0x%08lu\n",
fprintf(stderr, "Can't connect to FTP server 0x%08lx\n",
(unsigned long)GetLastError());
}
InternetCloseHandle(Hint);
}
else
{
fprintf(stderr,"There was an error while connecting to the Internet 0x%08lu\n",
(unsigned long)GetLastError());
fprintf(stderr, "There was an error while connecting to the "
"Internet 0x%08lx\n", (unsigned long)GetLastError());
}
MessageBox( NULL, L"Thanks a lot for helping improving VLC!",
L"VLC crash report" , MB_OK);