Added two whitespaces to match correct indentation.

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8855 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
yangguo@chromium.org 2011-08-08 09:53:28 +00:00
parent 76aad1a07b
commit b301cab837

View File

@ -787,9 +787,9 @@ static FILE* FOpen(const char* path, const char* mode) {
#if (defined(_WIN32) || defined(_WIN64))
FILE* result;
if (fopen_s(&result, path, mode) == 0) {
return result;
return result;
} else {
return NULL;
return NULL;
}
#else
FILE* file = fopen(path, mode);