(svn r17169) -Codechange: apply coding style to some for statements

This commit is contained in:
smatz
2009-08-14 17:14:04 +00:00
parent c5533ae470
commit 2d3ddab7ca
4 changed files with 4 additions and 4 deletions

View File

@@ -464,7 +464,7 @@ static const PathNode *FindSafePosition(PathNode *path, const Train *v)
/* If there is no signal, reserve the whole path. */
PathNode *sig = path;
for(; path->parent != NULL; path = path->parent) {
for (; path->parent != NULL; path = path->parent) {
if (IsSafeWaitingPosition(v, path->node.tile, path->node.direction, true, _settings_game.pf.forbid_90_deg)) {
sig = path;
}