(svn r7108) -Fix (r7106): signed/unsigned comparison warning
authorDarkvater
Tue, 07 Nov 2006 23:25:27 +0000
changeset 5055 2c5af9a3b79f
parent 5054 45cfda0fd7eb
child 5056 8fabd0020af7
(svn r7108) -Fix (r7106): signed/unsigned comparison warning
rail_cmd.c
--- a/rail_cmd.c	Tue Nov 07 22:34:59 2006 +0000
+++ b/rail_cmd.c	Tue Nov 07 23:25:27 2006 +0000
@@ -285,7 +285,7 @@
 			/* XXX Assume a 'higher' railtype has preference. This means we
 			 * will convert from normal rail to electrified rail, but not
 			 * the other way around. */
-			if (GetRailType(tile) < p1) {
+			if (GetRailType(tile) < (RailType)p1) {
 				ret = DoCommand(tile, tile, p1, flags, CMD_CONVERT_RAIL);
 				if (CmdFailed(ret)) return ret;
 				cost += ret;