From fe1287dd5d43a34e07c441269d8eff9c05b520c0 Mon Sep 17 00:00:00 2001 From: Marco Wang Date: Sat, 10 Oct 2020 00:06:11 +0800 Subject: [PATCH] src/logging.cc: Fix a typo in comment Signed-off-by: Marco Wang --- src/logging.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logging.cc b/src/logging.cc index 696aefb..1f5f034 100644 --- a/src/logging.cc +++ b/src/logging.cc @@ -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.