Skip to content

Commit 8b965ff

Browse files
committed
Remove tabs
1 parent 27f8d7c commit 8b965ff

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

FileSystem.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
#define FS_FOLLOW_MAX 40
4242
#define FS_ALIGN(x, a) (((x) + ((a) - 1)) & ~((a) - 1))
4343
#define FS_FALLOC_FL_ALLOCATE_RANGE 0x00
44-
#define FS_FALLOC_FL_MODE_MASK (FS_FALLOC_FL_ALLOCATE_RANGE | \
44+
#define FS_FALLOC_FL_MODE_MASK (FS_FALLOC_FL_ALLOCATE_RANGE | \
4545
FS_FALLOC_FL_ZERO_RANGE | \
4646
FS_FALLOC_FL_PUNCH_HOLE | \
4747
FS_FALLOC_FL_COLLAPSE_RANGE | \
@@ -1797,7 +1797,7 @@ int FileSystem::FAllocate(int fdNum, int mode, fs_off_t offset, fs_off_t len) {
17971797
if (!(fd->flags & (FS_O_WRONLY | FS_O_RDWR)))
17981798
return -FS_EBADF;
17991799
if ((mode & ~FS_FALLOC_FL_KEEP_SIZE) && fd->flags & FS_O_APPEND)
1800-
return -FS_EPERM;
1800+
return -FS_EPERM;
18011801
struct BaseINode* baseInode = fd->inode;
18021802
if (FS_S_ISDIR(baseInode->mode))
18031803
return -FS_EISDIR;

0 commit comments

Comments
 (0)