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
commit8b7c1e94e19425b5aee91dbf938d1f7efda2b521 (patch)
tree64071b84d0e82fc090b093f501dd16dcaf282faa /train_cmd.c
parent2c9cd8f68c1bf491e4c887de2899f0e0601c297c (diff)
downloadopenttd-8b7c1e94e19425b5aee91dbf938d1f7efda2b521.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