diff options
author | peter1138 <peter1138@openttd.org> | 2006-09-29 07:30:44 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2006-09-29 07:30:44 +0000 |
commit | bffa202b485cda8c0fee708eaba21408d046e8da (patch) | |
tree | b73d830d896bcbb18ab38561a34506c8fb755f9f | |
parent | 1f2ed9d731cfc0b1b7a03b843175238a9a64948d (diff) | |
download | openttd-bffa202b485cda8c0fee708eaba21408d046e8da.tar.xz |
(svn r6565) - Fix (r6562): Missing newline at EOF caused a compiler warning
-rw-r--r-- | vehicle_gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vehicle_gui.c b/vehicle_gui.c index de4a2497c..c7a5ca6e7 100644 --- a/vehicle_gui.c +++ b/vehicle_gui.c @@ -1650,4 +1650,4 @@ void ShowVehWithSharedOrders(Vehicle *v, byte vehicle_type) { if (v->orders == NULL) return; // no shared list to show ShowVehicleListWindowLocal(v->owner, vehicle_type, INVALID_STATION, v->orders->index, true); -}
\ No newline at end of file +} |