(svn r22562) -Codechange: Remove constness from TownGetVariable.

This commit is contained in:
terkhen
2011-06-12 20:37:26 +00:00
parent 58e70e26f2
commit 713acf1ad3
5 changed files with 5 additions and 5 deletions

View File

@@ -264,7 +264,7 @@ static uint32 StationGetVariable(const ResolverObject *object, byte variable, by
if (object->scope == VSG_SCOPE_PARENT) {
/* Pass the request on to the town of the station */
const Town *t;
Town *t;
if (st != NULL) {
t = st->town;