clang-format

pull/1192/merge
Tatsuhiro Tsujikawa 2018-05-15 21:09:56 +09:00
parent 6995edbf08
commit 9bdc6eb34c
2 changed files with 3 additions and 2 deletions

View File

@ -242,7 +242,7 @@ bool File::mkdirs()
} }
} }
return true; return true;
} } // namespace aria2
mode_t File::mode() mode_t File::mode()
{ {

View File

@ -389,7 +389,8 @@ ssize_t WinTLSSession::writeData(const void* data, size_t len)
if (state_ != st_closing) { if (state_ != st_closing) {
A2_LOG_ERROR(fmt("WinTLS: Failed to encrypt a message! %s", A2_LOG_ERROR(fmt("WinTLS: Failed to encrypt a message! %s",
getLastErrorString().c_str())); getLastErrorString().c_str()));
} else { }
else {
// On closing state, don't log this message in error level // On closing state, don't log this message in error level
// because it seems that the encryption tends to fail in that // because it seems that the encryption tends to fail in that
// state. // state.