Style. Very odd as I despise space-before-( anyway, I should got to sleep.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40041 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2010-12-30 00:02:11 +00:00
parent 87ff4c051b
commit 2fd3b8b9c5

View File

@ -64,13 +64,13 @@ SourceFile::Init(const char* path)
}
if (st.st_size > kMaxSourceFileSize) {
close (fd);
close(fd);
return B_FILE_TOO_LARGE;
}
size_t fileSize = st.st_size;
if (fileSize == 0) {
close (fd);
close(fd);
return B_BAD_VALUE;
}