src/logging.cc: Fix a typo in comment

Signed-off-by: Marco Wang <m.aesophor@gmail.com>
This commit is contained in:
Marco Wang 2020-10-10 00:06:11 +08:00
parent c8f8135a57
commit fe1287dd5d

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.