summaryrefslogtreecommitdiff
path: root/namegen.c
diff options
context:
space:
mode:
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);
}