diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1350,7 +1350,7 @@ static bool CheckCanTerraformSurrounding * This function tries to flatten out the land below an industry, without * damaging the surroundings too much. */ -static bool CheckIfCanLevelIndustryPlatform(TileIndex tile, uint32 flags, const IndustryTileTable* it, int type) +static bool CheckIfCanLevelIndustryPlatform(TileIndex tile, uint32 flags, const IndustryTileTable *it, int type) { const int MKEND = -0x80; // used for last element in an IndustryTileTable (see build_industry.h) int max_x = 0; @@ -1984,7 +1984,7 @@ static void CanCargoServiceIndustry(Carg * service the industry, and 1 otherwise (only competitors can service the * industry) */ -int WhoCanServiceIndustry(Industry* ind) +int WhoCanServiceIndustry(Industry *ind) { /* Find all stations within reach of the industry */ StationSet stations = FindStationsAroundTiles(ind->xy, ind->width, ind->height);