[haiku-commits] r40041 - haiku/trunk/src/apps/debugger/files

  • From: revol@xxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Thu, 30 Dec 2010 01:02:11 +0100 (CET)

Author: mmu_man
Date: 2010-12-30 01:02:11 +0100 (Thu, 30 Dec 2010)
New Revision: 40041
Changeset: http://dev.haiku-os.org/changeset/40041

Modified:
   haiku/trunk/src/apps/debugger/files/SourceFile.cpp
Log:
Style. Very odd as I despise space-before-( anyway, I should got to sleep.


Modified: haiku/trunk/src/apps/debugger/files/SourceFile.cpp
===================================================================
--- haiku/trunk/src/apps/debugger/files/SourceFile.cpp  2010-12-29 22:01:16 UTC 
(rev 40040)
+++ haiku/trunk/src/apps/debugger/files/SourceFile.cpp  2010-12-30 00:02:11 UTC 
(rev 40041)
@@ -64,13 +64,13 @@
        }
 
        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;
        }
 


Other related posts:

  • » [haiku-commits] r40041 - haiku/trunk/src/apps/debugger/files - revol