Formatting

This commit is contained in:
Marcus Holland-Moritz 2021-03-30 17:45:56 +02:00
parent 071982ba0f
commit bf26f7948a

View File

@ -397,7 +397,7 @@ class metadata_ final : public metadata_v2::impl {
};
static inode_rank get_inode_rank(uint16_t mode) {
switch ((mode)&S_IFMT) {
switch (mode & S_IFMT) {
case S_IFDIR:
return inode_rank::INO_DIR;
case S_IFLNK: