Commit 102a6929 authored by Nathan Scott's avatar Nathan Scott Committed by Nathan Scott

[XFS] sparse: fix remaining NULL vs zero uses.

SGI Modid: xfs-linux:xfs-kern:174857a
Signed-off-by: default avatarNathan Scott <nathans@sgi.com>
parent 01189f38
......@@ -119,9 +119,9 @@ xfs_read_xfsstats(
void
xfs_init_procfs(void)
{
if (!proc_mkdir("fs/xfs", 0))
if (!proc_mkdir("fs/xfs", NULL))
return;
create_proc_read_entry("fs/xfs/stat", 0, 0, xfs_read_xfsstats, NULL);
create_proc_read_entry("fs/xfs/stat", 0, NULL, xfs_read_xfsstats, NULL);
}
void
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment