aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJorge Lucangeli Obes <jorgelo@chromium.org>2019-09-16 11:27:08 -0400
committerJorge Lucangeli Obes <jorgelo@chromium.org>2019-09-17 14:57:44 +0000
commit9d8c3156b213d56206811f00887320f22eb0b9aa (patch)
tree97996365c0d543b696f25b99a9a6b665f843ba44
parentd3766fce4d8206bf76fa1d2488a1555bf22fdb9c (diff)
downloadplatform_external_libbrillo-9d8c3156b213d56206811f00887320f22eb0b9aa.tar.gz
platform_external_libbrillo-9d8c3156b213d56206811f00887320f22eb0b9aa.tar.bz2
platform_external_libbrillo-9d8c3156b213d56206811f00887320f22eb0b9aa.zip
libbrillo: Fix error message.
PLOG will add ':' so this is redundant and looks ugly. BUG=None TEST=emerge-eve libbrillo Change-Id: I6a6b2cb602e4d6064b9f955137b797355e588a09 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform2/+/1804584 Tested-by: Jorge Lucangeli Obes <jorgelo@chromium.org> Auto-Submit: Jorge Lucangeli Obes <jorgelo@chromium.org> Legacy-Commit-Queue: Commit Bot <commit-bot@chromium.org> Reviewed-by: Mike Frysinger <vapier@chromium.org> Cr-Mirrored-From: https://chromium.googlesource.com/chromiumos/platform2 Cr-Mirrored-Commit: a4f23a42015230b7e5161f9c8800fe262d561fd8
-rw-r--r--brillo/process.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/brillo/process.cc b/brillo/process.cc
index 72db75b..a70bfd7 100644
--- a/brillo/process.cc
+++ b/brillo/process.cc
@@ -326,7 +326,7 @@ bool ProcessImpl::Start() {
} else {
execv(argv[0], &argv[0]);
}
- PLOG(ERROR) << "Exec of " << argv[0] << " failed:";
+ PLOG(ERROR) << "Exec of " << argv[0] << " failed";
_exit(kErrorExitStatus);
} else {
// Still executing inside the parent process with known child pid.