[Box Backup-commit] COMMIT r1345 - box/chris/general/lib/raidfile
boxbackup-dev@fluffy.co.uk
boxbackup-dev@fluffy.co.uk
Sun, 04 Mar 2007 20:39:50 +0000
Author: chris
Date: 2007-03-04 20:39:50 +0000 (Sun, 04 Mar 2007)
New Revision: 1345
Modified:
box/chris/general/lib/raidfile/RaidFileRead.cpp
Log:
Code formatting (cosmetic)
Modified: box/chris/general/lib/raidfile/RaidFileRead.cpp
===================================================================
--- box/chris/general/lib/raidfile/RaidFileRead.cpp 2007-03-04 00:23:44 UTC (rev 1344)
+++ box/chris/general/lib/raidfile/RaidFileRead.cpp 2007-03-04 20:39:50 UTC (rev 1345)
@@ -9,24 +9,24 @@
#include "Box.h"
-#include <sys/types.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <stdarg.h>
#include <unistd.h>
-#include <fcntl.h>
-#include <errno.h>
+
#include <sys/stat.h>
+#include <sys/types.h>
#ifdef HAVE_SYS_UIO_H
-#include <sys/uio.h>
+ #include <sys/uio.h>
#endif
#ifdef HAVE_SYSLOG_H
-#include <syslog.h>
+ #include <syslog.h>
#endif
-#include <stdarg.h>
-
#ifdef HAVE_DIRENT_H
-#include <dirent.h>
+ #include <dirent.h>
#endif
#include <stdio.h>
@@ -42,7 +42,7 @@
#include "MemLeakFindOn.h"
#define READ_NUMBER_DISCS_REQUIRED 3
-#define READV_MAX_BLOCKS 64
+#define READV_MAX_BLOCKS 64
// We want to use POSIX fstat() for now, not the emulated one
#undef fstat