Revision: 6413
Author: [email protected]
Date: Thu Jan 20 00:21:40 2011
Log: Fix Windows compile
Review URL: http://codereview.chromium.org/6260014
http://code.google.com/p/v8/source/detail?r=6413

Modified:
 /branches/bleeding_edge/src/platform-win32.cc

=======================================
--- /branches/bleeding_edge/src/platform-win32.cc       Wed Jan 19 06:28:15 2011
+++ /branches/bleeding_edge/src/platform-win32.cc       Thu Jan 20 00:21:40 2011
@@ -671,7 +671,7 @@


 bool OS::Remove(const char* path) {
-  return (DeleteFile(path) != 0);
+  return (DeleteFileA(path) != 0);
 }


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to