kernel/fs: fix warning on x86_64.
This commit is contained in:
@@ -640,8 +640,10 @@ NodeMonitorService::_ResolveMountPoint(dev_t device, ino_t directory,
|
||||
status = vfs_resolve_parent(vnode, &parentDevice, &parentDirectory);
|
||||
vfs_put_vnode(vnode);
|
||||
}
|
||||
if (status != B_OK)
|
||||
dprintf("Resolving mount point %ld:%lld failed!\n", device, directory);
|
||||
if (status != B_OK) {
|
||||
dprintf("Resolving mount point %" B_PRIdDEV ":%" B_PRIdINO " failed!"
|
||||
"\n", device, directory);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user