Removing O_SYNC from FILE_WRITE mode for the SD File class.

This commit is contained in:
David A. Mellis 2011-02-25 18:44:43 -05:00
parent 8c0fdf1e43
commit cc954c3570
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
#include <utility/SdFatUtil.h>
#define FILE_READ O_READ
#define FILE_WRITE (O_READ | O_WRITE | O_CREAT | O_SYNC)
#define FILE_WRITE (O_READ | O_WRITE | O_CREAT)
class File : public Stream {
private: