vlc/vlc-1.1 | branch: master | Jean-Baptiste Kempf <[email protected]> | Mon Apr 11 23:03:40 2011 +0200| [e8a93abed03e7b5167b52a562c668d8b1531cedb] | committer: Jean-Baptiste Kempf
Win32: Use a better name for crashes report folder > http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=e8a93abed03e7b5167b52a562c668d8b1531cedb --- bin/winvlc.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/winvlc.c b/bin/winvlc.c index e549d7b..77ba827 100644 --- a/bin/winvlc.c +++ b/bin/winvlc.c @@ -246,8 +246,8 @@ static void check_crashdump() SYSTEMTIME now; GetSystemTime(&now); wchar_t remote_file[MAX_PATH]; - swprintf( remote_file, L"/crashs-win32/%04d%02d%02d%02d%02d%02d",now.wYear, - now.wMonth, now.wDay, now.wHour, now.wMinute, now.wSecond ); + swprintf( remote_file, L"/crashes-win32/%04d%02d%02d%02d%02d%02d", + now.wYear, now.wMonth, now.wDay, now.wHour, now.wMinute, now.wSecond ); FtpPutFile( ftp, wdir, remote_file, FTP_TRANSFER_TYPE_BINARY, 0); InternetCloseHandle(ftp); _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
