Commit 64395d95 authored by Theodore Ts'o's avatar Theodore Ts'o

ext4: initialize ret to suppress smatch warning

Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent 512c15ef
......@@ -4382,7 +4382,7 @@ static int ext4_alloc_file_blocks(struct file *file, ext4_lblk_t offset,
{
struct inode *inode = file_inode(file);
handle_t *handle;
int ret, ret2 = 0, ret3 = 0;
int ret = 0, ret2 = 0, ret3 = 0;
int retries = 0;
int depth = 0;
struct ext4_map_blocks map;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment