town_gui.c
changeset 5568 75f13d7bfaed
parent 5247 c3eece01af11
child 5623 ef2a8a524a95
--- a/town_gui.c	Tue Dec 26 17:22:47 2006 +0000
+++ b/town_gui.c	Tue Dec 26 17:36:18 2006 +0000
@@ -410,8 +410,7 @@
 
 	/* Create array for sorting */
 	_town_sort = realloc((void*)_town_sort, (GetMaxTownIndex() + 1) * sizeof(_town_sort[0]));
-	if (_town_sort == NULL)
-		error("Could not allocate memory for the town-sorting-list");
+	if (_town_sort == NULL) error("Could not allocate memory for the town-sorting-list");
 
 	FOR_ALL_TOWNS(t) _town_sort[n++] = t;
 
@@ -420,7 +419,7 @@
 	_last_town = NULL; // used for "cache"
 	qsort((void*)_town_sort, n, sizeof(_town_sort[0]), _town_sort_order & 2 ? TownPopSorter : TownNameSorter);
 
-	DEBUG(misc, 1) ("Resorting Towns list...");
+	DEBUG(misc, 3, "Resorting towns list");
 }