| Index: runtime/bin/gen_snapshot.cc
|
| diff --git a/runtime/bin/gen_snapshot.cc b/runtime/bin/gen_snapshot.cc
|
| index 0660212b155f171ec04b646bd9bff3b1b2fd83e6..03a24cf9992435bb9a17e0c1d886a1fbdbc1f37f 100644
|
| --- a/runtime/bin/gen_snapshot.cc
|
| +++ b/runtime/bin/gen_snapshot.cc
|
| @@ -81,7 +81,7 @@ static int ParseArguments(int argc,
|
|
|
| static void WriteSnapshotFile(const uint8_t* buffer, const intptr_t size) {
|
| const bool kWritable = true;
|
| - File* file = File::OpenFile(snapshot_filename, kWritable);
|
| + File* file = File::Open(snapshot_filename, kWritable);
|
| ASSERT(file != NULL);
|
| for (intptr_t i = 0; i < size; i++) {
|
| file->WriteByte(buffer[i]);
|
|
|