replace all NULLs with nullptr

This commit is contained in:
Martin Michelsen
2022-03-07 21:22:10 -08:00
parent e5bc59a896
commit 15f978820f
18 changed files with 301 additions and 339 deletions
+1 -1
View File
@@ -758,7 +758,7 @@ static void process_subcommand_destroy_item(shared_ptr<ServerState>,
if ((cmd->size != 3) || !l->is_game()) {
return;
}
l->remove_item(cmd->item_id, NULL);
l->remove_item(cmd->item_id, nullptr);
}
forward_subcommand(l, c, command, flag, p, count);