diff --git a/src/apps/debugger/files/SourceFile.cpp b/src/apps/debugger/files/SourceFile.cpp index 001dcf0e76..63a0e8d20b 100644 --- a/src/apps/debugger/files/SourceFile.cpp +++ b/src/apps/debugger/files/SourceFile.cpp @@ -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; }