mirror of
https://github.com/opnsense/src.git
synced 2026-04-26 16:47:30 -04:00
Fix a minor style(9) issue.
This commit is contained in:
parent
190d685037
commit
b65c3b8fab
1 changed files with 2 additions and 4 deletions
|
|
@ -639,16 +639,14 @@ nandfs_get_node_raw(struct nandfs_device *nandfsdev, struct nandfsmount *nmp,
|
|||
if (nmp) {
|
||||
mp = nmp->nm_vfs_mountp;
|
||||
error = getnewvnode("nandfs", mp, &nandfs_vnodeops, &nvp);
|
||||
if (error) {
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
} else {
|
||||
mp = NULL;
|
||||
error = getnewvnode("snandfs", mp, &nandfs_system_vnodeops,
|
||||
&nvp);
|
||||
if (error) {
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
}
|
||||
|
||||
if (mp)
|
||||
|
|
|
|||
Loading…
Reference in a new issue