Skip to content

Commit

Permalink
ext4: remove unnecessary braces in fs/ext4/dir.c
Browse files Browse the repository at this point in the history
Removes braces to follow the coding style.

Signed-off-by: Milan Djurovic <mdjurovic@zohomail.com>
Link: https://lore.kernel.org/r/20210316052953.67616-1-mdjurovic@zohomail.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
  • Loading branch information
Milan Djurovic authored and Theodore Ts'o committed Apr 2, 2021
1 parent 6b3caab commit 400086d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/ext4/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ static int ext4_readdir(struct file *file, struct dir_context *ctx)

if (is_dx_dir(inode)) {
err = ext4_dx_readdir(file, ctx);
if (err != ERR_BAD_DX_DIR) {
if (err != ERR_BAD_DX_DIR)
return err;
}

/* Can we just clear INDEX flag to ignore htree information? */
if (!ext4_has_metadata_csum(sb)) {
/*
Expand Down

0 comments on commit 400086d

Please sign in to comment.