(svn r2696) Remove stray semicolons
authortron
Sat, 23 Jul 2005 19:48:24 +0000
changeset 2182 89e6e39734a4
parent 2181 659d7d8d1ccd
child 2183 6fba9150225b
(svn r2696) Remove stray semicolons
npf.c
pbs.c
train_cmd.c
--- a/npf.c	Sat Jul 23 19:00:56 2005 +0000
+++ b/npf.c	Sat Jul 23 19:48:24 2005 +0000
@@ -70,7 +70,7 @@
 
 		return false;
 	}
-};
+}
 
 #if 0
 static uint NTPHash(uint key1, uint key2)
@@ -127,7 +127,7 @@
 
 	// return the tile of our target coordinates
 	return TileXY(x, y);
-};
+}
 
 /* On PBS pathfinding runs, this is called before pathfinding ends (BeforeExit aystar callback), and will
  * reserve the appropriate tracks, if needed. */
--- a/pbs.c	Sat Jul 23 19:00:56 2005 +0000
+++ b/pbs.c	Sat Jul 23 19:48:24 2005 +0000
@@ -40,7 +40,7 @@
  * to the track(dir)s that are unavailable due to reservations.
  * 0xFFFF are invalid entries and should never be accessed.
  */
-static const int16 encrt_to_unavail[16] = {
+static const uint16 encrt_to_unavail[16] = {
 	0x0000, 0x3F3F, 0x3F3F, 0x3737, 0x3B3B, 0x1F1F, 0x2F2F, 0xFFFF,
 	0xFFFF, 0xFFFF, 0xFFFF, 0x3F3F, 0x3F3F, 0x3F3F, 0x3F3F, 0xFFFF
 };
@@ -79,7 +79,7 @@
 			break;
 		default:
 			return;
-	};
+	}
 	// if debugging, mark tile dirty to show reserved status
 	if (_debug_pbs_level >= 1)
 		MarkTileDirtyByTile(tile);
@@ -100,7 +100,7 @@
 				byte res = encrt_to_reserved[(_m[tile].m4 & 0xF0) >> 4];
 				assert(res != 0xFF);
 				return res;
-			};
+			}
 		case MP_TUNNELBRIDGE:
 			return (_m[tile].m4 & 3);
 		case MP_STATION:
@@ -117,8 +117,8 @@
 			return HASBIT(_m[tile].m5, 3) ? 1 : 2;
 		default:
 			return 0;
-	};
-};
+	}
+}
 
 uint16 PBSTileUnavail(TileIndex tile) {
 	assert(IsValidTile(tile));
@@ -132,7 +132,7 @@
 				uint16 res = encrt_to_unavail[(_m[tile].m4 & 0xF0) >> 4];
 				assert(res != 0xFFFF);
 				return res;
-			};
+			}
 		case MP_TUNNELBRIDGE:
 			return (_m[tile].m4 & 3) | ((_m[tile].m4 & 3) << 8);
 		case MP_STATION:
@@ -144,8 +144,8 @@
 			return (HASBIT(_m[tile].m5, 0)) ? TRACKDIR_BIT_MASK : 0;
 		default:
 			return 0;
-	};
-};
+	}
+}
 
 void PBSClearTrack(TileIndex tile, Track track) {
 	assert(IsValidTile(tile));
@@ -183,11 +183,11 @@
 			break;
 		default:
 			return;
-	};
+	}
 	// if debugging, mark tile dirty to show reserved status
 	if (_debug_pbs_level >= 1)
 		MarkTileDirtyByTile(tile);
-};
+}
 
 void PBSClearPath(TileIndex tile, Trackdir trackdir, TileIndex end_tile, Trackdir end_trackdir) {
 	uint16 res;
@@ -209,7 +209,7 @@
 		} else {
 			byte exitdir = TrackdirToExitdir(trackdir);
 			tile = AddTileIndexDiffCWrap(tile, TileIndexDiffCByDir(exitdir));
-		};
+		}
 
 		res = PBSTileReserved(tile);
 		res |= res << 8;
@@ -217,7 +217,7 @@
 		trackdir = FindFirstBit2x64(res);
 
 	} while (res != 0);
-};
+}
 
 bool PBSIsPbsSignal(TileIndex tile, Trackdir trackdir)
 {
@@ -240,7 +240,7 @@
 		return true;
 	else
 		return false;
-};
+}
 
 typedef struct SetSignalsDataPbs {
 	int cur;
@@ -285,7 +285,7 @@
 		if (!PBSIsPbsSignal(tile, bit) && !PBSIsPbsSignal(tile, bit | 8))
 			return false;
 		result = true;
-	};
+	}
 
 	return result;
 }
--- a/train_cmd.c	Sat Jul 23 19:00:56 2005 +0000
+++ b/train_cmd.c	Sat Jul 23 19:48:24 2005 +0000
@@ -1310,7 +1310,7 @@
  	}
  	return tile;
 
-};
+}
 
 static void ReverseTrainDirection(Vehicle *v)
 {