diff options
author | Theodore Ts'o <tytso@mit.edu> | 2019-05-12 04:49:47 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2019-05-12 04:49:47 -0400 |
commit | 0ba33facfc9bb556d1938caa67dfe452695a9be9 (patch) | |
tree | 2446815c8ad9394e2cff2502bf9f05cd9d539d8d /fs/ext4/fsmap.c | |
parent | fbbbbd2f28aec991f3fbc248df211550fbdfd58c (diff) |
ext4: fix miscellaneous sparse warnings
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/fsmap.c')
-rw-r--r-- | fs/ext4/fsmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/fsmap.c b/fs/ext4/fsmap.c index 4b99e2db95b8..dbccf46f1770 100644 --- a/fs/ext4/fsmap.c +++ b/fs/ext4/fsmap.c @@ -626,7 +626,7 @@ int ext4_getfsmap(struct super_block *sb, struct ext4_fsmap_head *head, { struct ext4_fsmap dkeys[2]; /* per-dev keys */ struct ext4_getfsmap_dev handlers[EXT4_GETFSMAP_DEVS]; - struct ext4_getfsmap_info info = {0}; + struct ext4_getfsmap_info info = { NULL }; int i; int error = 0; |