forked from premiere/premiere-libtorrent
fixed typo
This commit is contained in:
parent
a2521bd23c
commit
f4d0d90f20
|
@ -71,8 +71,7 @@ namespace
|
||||||
error_code ec;
|
error_code ec;
|
||||||
std::string dir = complete("libtorrent_ext_logs");
|
std::string dir = complete("libtorrent_ext_logs");
|
||||||
if (!exists(dir)) create_directories(dir, ec);
|
if (!exists(dir)) create_directories(dir, ec);
|
||||||
m_file.open(combine_path(dir, filename).c_str()
|
m_file.open(combine_path(dir, filename).c_str(), std::ios_base::out);
|
||||||
, std::ios_base::out | std::ios_base::out);
|
|
||||||
m_file << "\n\n\n";
|
m_file << "\n\n\n";
|
||||||
log_timestamp();
|
log_timestamp();
|
||||||
m_file << "*** starting log ***\n";
|
m_file << "*** starting log ***\n";
|
||||||
|
|
Loading…
Reference in New Issue