summaryrefslogtreecommitdiff
path: root/src/economy.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-03-15 16:04:39 +0000
committersmatz <smatz@openttd.org>2009-03-15 16:04:39 +0000
commit8585aa71ed5bab510bc0a9104f36bc68734e0d73 (patch)
treea6bd8322261ba82369954b60f7c54e610dd6a990 /src/economy.cpp
parentaf293142fede91cc31e98c7e05d9ecfef752b077 (diff)
downloadopenttd-8585aa71ed5bab510bc0a9104f36bc68734e0d73.tar.xz
(svn r15726) -Codechange: unify coding style for const pointers
Diffstat (limited to 'src/economy.cpp')
-rw-r--r--src/economy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/economy.cpp b/src/economy.cpp
index 59d6997fc..71be0f50f 100644
--- a/src/economy.cpp
+++ b/src/economy.cpp
@@ -1514,7 +1514,7 @@ void VehiclePayment(Vehicle *front_v)
}
/* Call the production machinery of industries only once for every vehicle chain */
- const Industry *const *isend = industry_set.End();
+ const Industry * const *isend = industry_set.End();
for (Industry **iid = industry_set.Begin(); iid != isend; iid++) {
TriggerIndustryProduction(*iid);
}