diff options
author | Chris Wilson <chris+github@qwirx.com> | 2007-03-10 16:59:30 +0000 |
---|---|---|
committer | Chris Wilson <chris+github@qwirx.com> | 2007-03-10 16:59:30 +0000 |
commit | f6f5feee78b3d6cf865b34bb479301d7258ddeeb (patch) | |
tree | ccff83d0e0c6f08f19789d23fbf2185cf6e55d7a | |
parent | 23d8a877503763ce761a502bf7f0e79a2f5f07f5 (diff) |
Code formatting (cosmetic) (refs #3, merges [1345])
-rw-r--r-- | lib/raidfile/RaidFileRead.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/raidfile/RaidFileRead.cpp b/lib/raidfile/RaidFileRead.cpp index 363c638b..58aecfb1 100644 --- a/lib/raidfile/RaidFileRead.cpp +++ b/lib/raidfile/RaidFileRead.cpp @@ -9,12 +9,13 @@ #include "Box.h" -#include <sys/types.h> -#include <unistd.h> -#include <fcntl.h> #include <errno.h> -#include <sys/stat.h> +#include <fcntl.h> #include <stdarg.h> +#include <unistd.h> + +#include <sys/stat.h> +#include <sys/types.h> #ifdef HAVE_SYS_UIO_H #include <sys/uio.h> @@ -41,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 |