From 9d8fa486af824039fae197212d83365242511da5 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 18 Apr 2008 04:37:06 +0000 Subject: (svn r12761) -Codechange: lots of minor whitespace coding style fixes around operators. --- src/namegen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/namegen.cpp') diff --git a/src/namegen.cpp b/src/namegen.cpp index 3027e920b..4fc370767 100644 --- a/src/namegen.cpp +++ b/src/namegen.cpp @@ -305,7 +305,7 @@ static byte MakeFinnishTownName(char *buf, uint32 seed, const char *last) uint sel = SeedChance(2, lengthof(name_finnish_1) + lengthof(name_finnish_2), seed); if (sel >= lengthof(name_finnish_1)) { - strecat(buf, name_finnish_2[sel-lengthof(name_finnish_1)], last); + strecat(buf, name_finnish_2[sel - lengthof(name_finnish_1)], last); } else { strecat(buf, name_finnish_1[sel], last); } -- cgit v1.2.3-54-g00ecf