summaryrefslogtreecommitdiff
path: root/namegen.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-23 13:09:35 +0000
committertron <tron@openttd.org>2005-01-23 13:09:35 +0000
commit44f48ce91507e61eea706e836c68d041b4bb179f (patch)
tree8a25bb5502579aea9f2dd0b2af81bd353a8af767 /namegen.c
parent80131e1e4a75516145d84a10e99b596a6e85a908 (diff)
downloadopenttd-44f48ce91507e61eea706e836c68d041b4bb179f.tar.xz
(svn r1610) Remove trailing whitespace (last time ever, i hope)
Diffstat (limited to 'namegen.c')
-rw-r--r--namegen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/namegen.c b/namegen.c
index bac368e63..17f636953 100644
--- a/namegen.c
+++ b/namegen.c
@@ -13,7 +13,7 @@ static inline int32 SeedChanceBias(int shift_by, int max, uint32 seed, int bias)
return SeedChance(shift_by, max + bias, seed) - bias;
}
-static void ReplaceWords(const char *org, const char *rep, char *buf)
+static void ReplaceWords(const char *org, const char *rep, char *buf)
{
if (strncmp(buf, org, 4) == 0) strncpy(buf, rep, 4);
}