Fix Windows compile

Review URL: http://codereview.chromium.org/6260014

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6413 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
sgjesse@chromium.org 2011-01-20 08:21:40 +00:00
parent e528223fe2
commit 4653cc0aff

View File

@ -671,7 +671,7 @@ FILE* OS::FOpen(const char* path, const char* mode) {
bool OS::Remove(const char* path) {
return (DeleteFile(path) != 0);
return (DeleteFileA(path) != 0);
}