src/roadveh.h
changeset 7318 632cd0497770
parent 7135 3c1bcca0d6bb
child 7412 51db351a3313
--- a/src/roadveh.h	Tue Jul 24 13:03:24 2007 +0000
+++ b/src/roadveh.h	Tue Jul 24 17:01:23 2007 +0000
@@ -44,13 +44,13 @@
 }
 
 
-static inline bool IsRoadVehInDepot(const Vehicle* v)
+static inline bool IsRoadVehInDepot(const Vehicle *v)
 {
 	assert(v->type == VEH_ROAD);
 	return v->u.road.state == 254;
 }
 
-static inline bool IsRoadVehInDepotStopped(const Vehicle* v)
+static inline bool IsRoadVehInDepotStopped(const Vehicle *v)
 {
 	return IsRoadVehInDepot(v) && v->vehstatus & VS_STOPPED;
 }