From 4216c10eb105e290183dc6d3f9c688c5c0304b2d Mon Sep 17 00:00:00 2001 From: tron Date: Fri, 2 Feb 2007 19:09:54 +0000 Subject: [PATCH] (svn r8539) -Fix static --- src/station_cmd.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 59598b4368..0a6ff25527 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -92,7 +92,8 @@ RoadStop* GetRoadStopByTile(TileIndex tile, RoadStop::Type type) return rs; } -uint GetNumRoadStopsInStation(const Station* st, RoadStop::Type type) + +static uint GetNumRoadStopsInStation(const Station* st, RoadStop::Type type) { uint num = 0; const RoadStop *rs;