mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
nullfs_mount(): remove unneeded cast
(cherry picked from commit 0724293331)
This commit is contained in:
parent
3ba93b50d6
commit
a79bb016d9
1 changed files with 2 additions and 2 deletions
|
|
@ -174,8 +174,8 @@ nullfs_mount(struct mount *mp)
|
|||
return (EINVAL);
|
||||
}
|
||||
|
||||
xmp = (struct null_mount *) malloc(sizeof(struct null_mount),
|
||||
M_NULLFSMNT, M_WAITOK | M_ZERO);
|
||||
xmp = malloc(sizeof(struct null_mount), M_NULLFSMNT,
|
||||
M_WAITOK | M_ZERO);
|
||||
|
||||
/*
|
||||
* Save pointer to underlying FS and the reference to the
|
||||
|
|
|
|||
Loading…
Reference in a new issue