summaryrefslogtreecommitdiff
path: root/ai.c
diff options
context:
space:
mode:
Diffstat (limited to 'ai.c')
-rw-r--r--ai.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ai.c b/ai.c
index 6881d7e2a..0b8259bed 100644
--- a/ai.c
+++ b/ai.c
@@ -413,12 +413,14 @@ typedef struct FoundRoute {
void *to;
} FoundRoute;
-static Town *AiFindRandomTown() {
+static Town *AiFindRandomTown(void)
+{
Town *t = GetTown(RandomRange(_total_towns));
return (t->xy != 0) ? t : NULL;
}
-static Industry *AiFindRandomIndustry() {
+static Industry *AiFindRandomIndustry(void)
+{
Industry *i = GetIndustry(RandomRange(_total_industries));
return (i->xy != 0) ? i : NULL;
}