summaryrefslogtreecommitdiff
path: root/train_cmd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-06 18:45:28 +0000
committertron <tron@openttd.org>2005-01-06 18:45:28 +0000
commit2eb7aedf696bb160738df1d6832f51ec25df3d8a (patch)
tree64071b84d0e82fc090b093f501dd16dcaf282faa /train_cmd.c
parent124a29f7a5370c8cbfbc79ba7fc36200a6c2c676 (diff)
downloadopenttd-2eb7aedf696bb160738df1d6832f51ec25df3d8a.tar.xz
(svn r1402) Trim trailing whitespace
Diffstat (limited to 'train_cmd.c')
-rw-r--r--train_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/train_cmd.c b/train_cmd.c
index 257d8714c..686ce0bbf 100644
--- a/train_cmd.c
+++ b/train_cmd.c
@@ -1072,14 +1072,14 @@ int32 CmdRefitRailVehicle(int x, int y, uint32 flags, uint32 p1, uint32 p2)
p2 = p2 & 0xFF;
SET_EXPENSES_TYPE(EXPENSES_TRAIN_RUN);
-
+
v = &_vehicles[p1];
if (!CheckOwnership(v->owner) || ((CheckStoppedInDepot(v) < 0) && !(SkipStoppedInDepotCheck)))
return CMD_ERROR;
cost = 0;
num = 0;
-
+
do {
/* XXX: We also refit all the attached wagons en-masse if they
* can be refitted. This is how TTDPatch does it. TODO: Have