summaryrefslogtreecommitdiff
path: root/src/vehicle_cmd.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-07-23 22:01:25 +0000
committersmatz <smatz@openttd.org>2009-07-23 22:01:25 +0000
commit92f021a0a2991f8dcf1af07b717a9461b825b522 (patch)
tree77395244fbee202c854d58cd4a0b7c4aac41ca0d /src/vehicle_cmd.cpp
parente9bc557b2a3c13ab8038d577c047813c691122dd (diff)
downloadopenttd-92f021a0a2991f8dcf1af07b717a9461b825b522.tar.xz
(svn r16931) -Cleanup (r16922): one semicolon too much
Diffstat (limited to 'src/vehicle_cmd.cpp')
-rw-r--r--src/vehicle_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle_cmd.cpp b/src/vehicle_cmd.cpp
index 0cc03b9fa..9ba2fc412 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);