From ab52e3da5295dd8b6eb88f4740f21bfb59c07b5f Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 26 Jun 2007 21:17:51 +0000 Subject: (svn r10348) -Fix (r10347): compile errors; do not think it compiles fine when you run make on the wrong working copy. --- src/industry_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/industry_cmd.cpp') diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 21c08ee1a..188a701a5 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1648,7 +1648,7 @@ static void ExtChangeIndustryProduction(Industry *i) new_prod = clamp(new_prod, 1, 255); /* Do not stop closing the industry when it has the lowest possible production rate */ - if (new_prod == old_prod && && old_prod > 1)) { + if (new_prod == old_prod && old_prod > 1) { closeit = false; continue; } -- cgit v1.2.3-54-g00ecf