Commit 8a3032cc authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

winvlc: fix warning

parent e914d7f0
...@@ -249,7 +249,8 @@ static void check_crashdump() ...@@ -249,7 +249,8 @@ static void check_crashdump()
MessageBox( NULL, L"There was an error while connecting to the FTP server. "\ MessageBox( NULL, L"There was an error while connecting to the FTP server. "\
"Thanks a lot for the help anyway.", "Thanks a lot for the help anyway.",
L"Report sending failed", MB_OK); 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); InternetCloseHandle(Hint);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment