From 2fd3b8b9c5f0b173f3df0742a159eb787a257853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Thu, 30 Dec 2010 00:02:11 +0000 Subject: [PATCH] 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 --- src/apps/debugger/files/SourceFile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }