(svn r1004) Fix harmless typo (comma instead of semicolon)
authortron
Fri, 10 Dec 2004 13:02:47 +0000
changeset 584 19dbfc84e766
parent 583 3bcdf7a0c2f7
child 585 f93cb3611b1f
(svn r1004) Fix harmless typo (comma instead of semicolon)
vehicle.c
--- a/vehicle.c	Fri Dec 10 13:00:11 2004 +0000
+++ b/vehicle.c	Fri Dec 10 13:02:47 2004 +0000
@@ -26,7 +26,7 @@
 {
 	Order order;
 	order.type    = (packed & 0x000f);
-	order.flags   = (packed & 0x00f0) >> 4,
+	order.flags   = (packed & 0x00f0) >> 4;
 	order.station = (packed & 0xff00) >> 8;
 
 	// Sanity check