(svn r172) -Fix: warning fixes (Tron)
authordarkvater
Mon, 06 Sep 2004 21:47:12 +0000
changeset 171 29854f28b90b
parent 170 8b184d95b4fe
child 172 8d8b3383470d
(svn r172) -Fix: warning fixes (Tron)
vehicle_gui.c
--- a/vehicle_gui.c	Mon Sep 06 21:29:02 2004 +0000
+++ b/vehicle_gui.c	Mon Sep 06 21:47:12 2004 +0000
@@ -74,8 +74,8 @@
 static char _bufcache[64];	// used together with _last_vehicle_idx to hopefully speed up stringsorting
 int CDECL VehicleNameSorter(const void *a, const void *b)
 {
-	const SortStruct *cmp1 = (SortStruct*)a;
-	const SortStruct *cmp2 = (SortStruct*)b;
+	const SortStruct *cmp1 = (const SortStruct*)a;
+	const SortStruct *cmp2 = (const SortStruct*)b;
 	const Vehicle *va = DEREF_VEHICLE(cmp1->index);
 	const Vehicle *vb = DEREF_VEHICLE(cmp2->index);
 	char buf1[64] = "\0";
@@ -110,7 +110,7 @@
 	int r = va->age - vb->age;
 
 	if (r == 0) // if the sorting criteria had the same value, sort by unitnumber
-	r = va->unitnumber - vb->unitnumber;
+		r = va->unitnumber - vb->unitnumber;
 
 	return (_internal_sort_order & 1) ? -r : r;
 }