From 92f021a0a2991f8dcf1af07b717a9461b825b522 Mon Sep 17 00:00:00 2001 From: smatz Date: Thu, 23 Jul 2009 22:01:25 +0000 Subject: [PATCH] (svn r16931) -Cleanup (r16922): one semicolon too much --- src/vehicle_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vehicle_cmd.cpp b/src/vehicle_cmd.cpp index 0cc03b9fa4..9ba2fc412b 100644 --- a/src/vehicle_cmd.cpp +++ b/src/vehicle_cmd.cpp @@ -172,7 +172,7 @@ CommandCost CmdDepotSellAllVehicles(TileIndex tile, DoCommandFlag flags, uint32 CommandCost cost(EXPENSES_NEW_VEHICLES); VehicleType vehicle_type = (VehicleType)GB(p1, 0, 8); - uint sell_command = GetCmdSellVeh(vehicle_type);; + uint sell_command = GetCmdSellVeh(vehicle_type); /* Get the list of vehicles in the depot */ BuildDepotVehicleList(vehicle_type, tile, &list, &list);