Changeset - r9343:8488f8007422
[Not reviewed]
master
0 1 0
smatz - 16 years ago 2008-05-24 23:18:21
smatz@openttd.org
(svn r13239) -Fix: certain compilers give false warning about uninitialized variable
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/depot_gui.cpp
Show inline comments
 
@@ -879,7 +879,7 @@ struct DepotWindow : Window {
 
	{
 
		switch (widget) {
 
			case DEPOT_WIDGET_MATRIX: {
 
				Vehicle *v;
 
				Vehicle *v = NULL;
 
				VehicleID sel = this->sel;
 

	
 
				this->sel = INVALID_VEHICLE;
0 comments (0 inline, 0 general)