Fixed broken build of mksnapshot on Windows as there was warnings against

the use of fopen. Change use of fopen to OS::FOpen to get rid of warning.
Review URL: http://codereview.chromium.org/2846

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@303 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
sgjesse@chromium.org 2008-09-15 10:57:53 +00:00
parent 57d29fa44f
commit 1132d818c6

View File

@ -116,7 +116,7 @@ static int* counter_callback(const wchar_t* name) {
static int WriteInternalSnapshotToFile(const char* filename,
const char* str,
int size) {
FILE* f = fopen(filename, "wb");
FILE* f = i::OS::FOpen(filename, "wb");
if (f == NULL) {
i::OS::PrintError("Cannot open file %s for reading.\n", filename);
return 0;