Fix remaining semicolon spacing issues.

This commit is contained in:
Paul Chote
2019-06-08 15:18:13 +01:00
committed by reaperrr
parent c253aaeb9d
commit 65856f3b0e
4 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ namespace OpenRA
var path = Platform.SupportDir + "Logs";
Directory.CreateDirectory(path);
for (var i = 0;; i++)
for (var i = 0; ; i++)
yield return Path.Combine(path, i > 0 ? "{0}.{1}".F(baseFilename, i) : baseFilename);
}