Prefer NULL to 0 when passing a NULL pointer.

This commit is contained in:
Robert Watson 2002-08-20 02:54:09 +00:00
parent 8a97ecf648
commit 740348c40a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=102163
2 changed files with 2 additions and 2 deletions

View File

@ -1171,4 +1171,4 @@ static struct mac_policy_op_entry mac_none_ops[] =
};
MAC_POLICY_SET(mac_none_ops, trustedbsd_mac_none, "TrustedBSD MAC/None",
MPC_LOADTIME_FLAG_UNLOADOK, 0);
MPC_LOADTIME_FLAG_UNLOADOK, NULL);

View File

@ -1171,4 +1171,4 @@ static struct mac_policy_op_entry mac_none_ops[] =
};
MAC_POLICY_SET(mac_none_ops, trustedbsd_mac_none, "TrustedBSD MAC/None",
MPC_LOADTIME_FLAG_UNLOADOK, 0);
MPC_LOADTIME_FLAG_UNLOADOK, NULL);