Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1123)

Unified Diff: runtime/bin/vmservice_impl.cc

Issue 1800863002: Cleanup in //runtime/bin (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/bin/vmservice_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/vmservice_impl.cc
diff --git a/runtime/bin/vmservice_impl.cc b/runtime/bin/vmservice_impl.cc
index 08fd57a4da7b1798d5e9c9fbe25df72d83ff8e83..273640860a22a2086c2e8a1be0a44071aac5b98c 100644
--- a/runtime/bin/vmservice_impl.cc
+++ b/runtime/bin/vmservice_impl.cc
@@ -120,6 +120,7 @@ static void Shutdown(Dart_NativeArguments args) {
// NO-OP.
}
+
struct VmServiceIONativeEntry {
const char* name;
int num_arguments;
@@ -271,7 +272,7 @@ bool VmService::Setup(const char* server_ip,
const char* VmService::GetErrorMessage() {
- return error_msg_ == NULL ? "No error." : error_msg_;
+ return (error_msg_ == NULL) ? "No error." : error_msg_;
}
« no previous file with comments | « runtime/bin/vmservice_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698