mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 14:12:06 +00:00
fs: befs: remove cast for kmalloc return value
remove cast for kmalloc return value. Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com> Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
8c655c9b49
commit
ee68a3c625
@ -436,8 +436,7 @@ befs_btree_read(struct super_block *sb, befs_data_stream * ds,
|
||||
goto error;
|
||||
}
|
||||
|
||||
if ((this_node = (befs_btree_node *)
|
||||
kmalloc(sizeof (befs_btree_node), GFP_NOFS)) == NULL) {
|
||||
if ((this_node = kmalloc(sizeof (befs_btree_node), GFP_NOFS)) == NULL) {
|
||||
befs_error(sb, "befs_btree_read() failed to allocate %u "
|
||||
"bytes of memory", sizeof (befs_btree_node));
|
||||
goto error;
|
||||
|
Loading…
Reference in New Issue
Block a user