Skip to content

Commit

Permalink
Merge pull request #593 from aesophor/fix-typo
Browse files Browse the repository at this point in the history
src/logging.cc: Fix a typo in comment
  • Loading branch information
sergiud authored Feb 13, 2021
2 parents 6d5da21 + fe1287d commit 7a8b66a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logging.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 7a8b66a

Please sign in to comment.