# HG changeset patch # User Darkvater # Date 1157038091 0 # Node ID b80d443e41d9ac476b6deb3ba8d0d6fa25c8be04 # Parent ad6e7b42460939125bbb3e2237d0332191caffaf (svn r6279) -Codechange (r1525): Use proper const pointers for functions that do not change them . diff --git a/vehicle.h b/vehicle.h --- a/vehicle.h +++ b/vehicle.h @@ -426,11 +426,10 @@ } /* Get the first vehicle of a shared-list, so we only have to walk forwards */ -static inline Vehicle *GetFirstVehicleFromSharedList(Vehicle *v) +static inline Vehicle *GetFirstVehicleFromSharedList(const Vehicle *v) { - Vehicle *u = v; - while (u->prev_shared != NULL) - u = u->prev_shared; + Vehicle *u = (Vehicle *)v; + while (u->prev_shared != NULL) u = u->prev_shared; return u; } @@ -462,8 +461,7 @@ * Best is to have a virtual value for it when it needs to change again */ #define STATUS_BAR 5 +extern const uint32 _send_to_depot_proc_table[]; #define CMD_SEND_TO_DEPOT(x) _send_to_depot_proc_table[ x - VEH_Train] -extern const uint32 _send_to_depot_proc_table[]; - #endif /* VEHICLE_H */