[vlc-commits] winvlc: fix format string
Rémi Denis-Courmont
git at videolan.org
Tue Oct 11 23:03:58 CEST 2016
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Oct 12 00:03:42 2016 +0300| [e9ca045296484b80527f4993853277e43ddfd745] | committer: Rémi Denis-Courmont
winvlc: fix format string
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e9ca045296484b80527f4993853277e43ddfd745
---
bin/winvlc.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/bin/winvlc.c b/bin/winvlc.c
index fa11913..1d1eec6 100644
--- a/bin/winvlc.c
+++ b/bin/winvlc.c
@@ -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);
More information about the vlc-commits
mailing list