| Index: runtime/bin/gen_snapshot.cc
|
| diff --git a/runtime/bin/gen_snapshot.cc b/runtime/bin/gen_snapshot.cc
|
| index 544cf32fa28763be5f7d5e00c7cc83254e80305c..1aaf1925f6938b114e18148b9957d189cde1440c 100644
|
| --- a/runtime/bin/gen_snapshot.cc
|
| +++ b/runtime/bin/gen_snapshot.cc
|
| @@ -554,7 +554,8 @@ int main(int argc, char** argv) {
|
| }
|
|
|
| char* error;
|
| - Dart_Isolate isolate = Dart_CreateIsolate(NULL, NULL, NULL, NULL, &error);
|
| + Dart_Isolate isolate = Dart_CreateIsolate(
|
| + NULL, NULL, NULL, NULL, NULL, &error);
|
| if (isolate == NULL) {
|
| Log::PrintErr("Error: %s", error);
|
| free(error);
|
| @@ -600,7 +601,7 @@ int main(int argc, char** argv) {
|
|
|
| // Now we create an isolate into which we load all the code that needs to
|
| // be in the snapshot.
|
| - if (Dart_CreateIsolate(NULL, NULL, NULL, NULL, &error) == NULL) {
|
| + if (Dart_CreateIsolate(NULL, NULL, NULL, NULL, NULL, &error) == NULL) {
|
| fprintf(stderr, "%s", error);
|
| free(error);
|
| exit(255);
|
|
|