reduce indentation
[oota-llvm.git] / lib / Support / raw_ostream.cpp
index 7a02db1aeb3905b68303a49f7e05a609d440eda7..0b05c5449ae6bda987d982b7d16597ea46c305b4 100644 (file)
@@ -442,7 +442,8 @@ uint64_t raw_fd_ostream::seek(uint64_t off) {
 }
 
 size_t raw_fd_ostream::preferred_buffer_size() const {
-#if !defined(_MSC_VER) && !defined(__MINGW32__) // Windows has no st_blksize.
+#if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(_MINIX)
+  // Windows and Minix have no st_blksize.
   assert(FD >= 0 && "File not yet open!");
   struct stat statbuf;
   if (fstat(FD, &statbuf) != 0)