Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7589aff9 authored by Alex Vakulenko's avatar Alex Vakulenko Committed by chrome-internal-fetch
Browse files

crash-reporter: fix linter issues

Fixed various issues reported by cpplint.py when run on
src/platform2/crash-reporter.

BUG=None
TEST=FEATURES=test emerge-link crash-reporter
cpplint.py `find crash-reporter/* | grep "\.cc\|\.h"`

Change-Id: If874b3dbf539d2dd22cf740a0d3523225d1c61a7
Reviewed-on: https://chromium-review.googlesource.com/210418


Tested-by: default avatarAlex Vakulenko <avakulenko@chromium.org>
Reviewed-by: default avatarAlex Deymo <deymo@chromium.org>
Commit-Queue: Alex Vakulenko <avakulenko@chromium.org>
parent 3c6b82c4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -6,12 +6,12 @@

#include <dirent.h>
#include <fcntl.h>  // For file creation modes.
#define __STDC_FORMAT_MACROS  // PRId64
#include <inttypes.h>
#include <pwd.h>  // For struct passwd.
#include <sys/types.h>  // for mode_t.
#include <sys/wait.h>  // For waitpid.
#include <unistd.h>  // For execv and fork.
#define __STDC_FORMAT_MACROS  // PRId64
#include <inttypes.h>

#include <set>
#include <utility>
+1 −1
Original line number Diff line number Diff line
@@ -2,9 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <unistd.h>  // for isatty()
#include <dbus/dbus-glib-lowlevel.h>
#include <glib.h>
#include <unistd.h>  // for isatty()

#include <deque>
#include <string>