From 565602fe90c2b9a8b6c82fb77d3686df3c309b48 Mon Sep 17 00:00:00 2001 From: frosch Date: Thu, 12 Feb 2009 18:08:47 +0000 Subject: [PATCH] (svn r15458) -Fix: Missing 'static'. --- src/industry_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 6e93dd5a36..d1c2156247 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1705,7 +1705,7 @@ CommandCost CmdBuildIndustry(TileIndex tile, DoCommandFlag flags, uint32 p1, uin } -Industry *CreateNewIndustry(TileIndex tile, IndustryType type) +static Industry *CreateNewIndustry(TileIndex tile, IndustryType type) { const IndustrySpec *indspec = GetIndustrySpec(type);