From 09c5da7147d3934efee209a7cfeedd6651b2c7c1 Mon Sep 17 00:00:00 2001 From: Kirk Ouimet Date: Tue, 9 Jun 2015 21:06:40 -0700 Subject: [PATCH] Fixing cpplint line width --- atom/common/crash_reporter/crash_reporter.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/atom/common/crash_reporter/crash_reporter.cc b/atom/common/crash_reporter/crash_reporter.cc index 144542086a1f..59b7fd51e45e 100644 --- a/atom/common/crash_reporter/crash_reporter.cc +++ b/atom/common/crash_reporter/crash_reporter.cc @@ -46,7 +46,8 @@ std::vector CrashReporter::GetUploadedReports(const std::string& path) { std::string file_content; std::vector result; - if (base::ReadFileToString(base::FilePath::FromUTF8Unsafe(path), &file_content)) { + if (base::ReadFileToString(base::FilePath::FromUTF8Unsafe(path), + &file_content)) { std::vector reports; base::SplitString(file_content, '\n', &reports); for (const std::string& report : reports) {