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

Unified Diff: runtime/vm/unit_test.h

Issue 1162033005: Fix http://dartbug.com/23578: (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Update to ToT. Created 5 years, 6 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
Index: runtime/vm/unit_test.h
diff --git a/runtime/vm/unit_test.h b/runtime/vm/unit_test.h
index e554b5af2e02ed57c1d34d2df3aa724bbb113e12..01ba00926e5dbba4eb3a75a2e2a04ec5ed2c76e5 100644
--- a/runtime/vm/unit_test.h
+++ b/runtime/vm/unit_test.h
@@ -286,7 +286,8 @@ class TestCase : TestCaseBase {
static Dart_Isolate CreateIsolate(const uint8_t* buffer,
const char* name) {
char* err;
- Dart_Isolate isolate = Dart_CreateIsolate(name, NULL, buffer, NULL, &err);
+ Dart_Isolate isolate = Dart_CreateIsolate(
+ name, NULL, buffer, NULL, NULL, &err);
if (isolate == NULL) {
OS::Print("Creation of isolate failed '%s'\n", err);
free(err);
« runtime/vm/isolate.cc ('K') | « runtime/vm/thread_test.cc ('k') | runtime/vm/zone_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698