From e27e381d29ce7979fddd6c7f1029e0ae90aa8e4a Mon Sep 17 00:00:00 2001 From: glx Date: Wed, 4 Oct 2006 01:08:25 +0000 Subject: [PATCH] (svn r6635) -Fix r6634: incomplete/incorrect assignment --- vehicle_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vehicle_gui.c b/vehicle_gui.c index f9c977f845..5d17c22762 100644 --- a/vehicle_gui.c +++ b/vehicle_gui.c @@ -1576,7 +1576,7 @@ static void DrawVehicleListWindow(Window *w) } if (owner == _local_player) { - bool list_isempty vl->l.list_length == 0; + bool list_isempty = vl->l.list_length == 0; SetWindowWidgetDisabledState(w, VLW_WIDGET_SEND_TO_DEPOT, list_isempty); SetWindowWidgetDisabledState(w, VLW_WIDGET_AUTOREPLACE, list_isempty);