]> git.sesse.net Git - vlc/commitdiff
winvlc: fix warning
authorRémi Denis-Courmont <remi@remlab.net>
Thu, 28 Jul 2011 16:35:35 +0000 (19:35 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Thu, 28 Jul 2011 16:35:35 +0000 (19:35 +0300)
bin/winvlc.c

index 50cac7d69624b7fb3f011568ac6c0174747160e6..31d4db40072b655aceb808e4e1f7883b4a2264b6 100644 (file)
@@ -249,7 +249,8 @@ static void check_crashdump()
                     MessageBox( NULL, L"There was an error while connecting to the FTP server. "\
                                     "Thanks a lot for the help anyway.",
                                     L"Report sending failed", MB_OK);
-                    fprintf(stderr,"Can't connect to FTP server%d\n",GetLastError());
+                    fprintf(stderr,"Can't connect to FTP server 0x%08lu\n",
+                            (unsigned long)GetLastError());
                 }
                 InternetCloseHandle(Hint);
             }