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 | 902c3ef1e2032d2aa862087268446a71730fdeed (patch) | |
tree | b73d830d896bcbb18ab38561a34506c8fb755f9f | |
parent | 4ccdb0686f3b401199efc975e8ce9f75bbcde0d7 (diff) | |
download | openttd-902c3ef1e2032d2aa862087268446a71730fdeed.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 +} |