Merge pull request #593 from aesophor/fix-typo

src/logging.cc: Fix a typo in comment
This commit is contained in:
Sergiu Deitsch 2021-02-13 11:46:55 +01:00 committed by GitHub
commit 7a8b66aa17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1672,7 +1672,7 @@ void LogMessage::Flush() {
const int level = AndroidLogLevel((int)data_->severity_);
const std::string text = std::string(data_->message_text_);
__android_log_write(level, "native", text.substr(0,data_->num_chars_to_log_).c_str());
#endif // !defined(__ANDROID__)
#endif // defined(__ANDROID__)
if (append_newline) {
// Fix the ostrstream back how it was before we screwed with it.