From 79154bf0fc60e10409edaf03784cd99d5bf14731 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sun, 13 Sep 2009 21:13:31 -0400 Subject: [PATCH] Simplify reco() not to pass useless flags to pln_arm() Flags P_S and P_I have no effect. --- src/lib/commands/reco.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/commands/reco.c b/src/lib/commands/reco.c index 4afb2e63d..65e94c8bc 100644 --- a/src/lib/commands/reco.c +++ b/src/lib/commands/reco.c @@ -97,7 +97,7 @@ reco(void) /* * now arm and equip the bombers, transports, whatever. */ - pln_arm(&bomb_list, ap_to_target, 'r', NULL, P_S | P_I); + pln_arm(&bomb_list, ap_to_target, 'r', NULL, 0); if (QEMPTY(&bomb_list)) { pr("No planes could be equipped for the mission.\n"); return RET_FAIL; -- 2.43.0