1
0
Fork 0

(svn r1408) -Fix: uninitialized variable :)

release/0.4.5
darkvater 2005-01-06 22:50:48 +00:00
parent 63e97754fb
commit a3c0e81230
1 changed files with 1 additions and 1 deletions

View File

@ -587,7 +587,7 @@ extern uint32 GetOldTownName(uint32 townnameparts, byte old_town_name_type);
static void FixTown(OldTown *o, int num, byte town_name_type) static void FixTown(OldTown *o, int num, byte town_name_type)
{ {
Town *t; Town *t;
uint i; uint i = 0;
do { do {
t = GetTown(i); t = GetTown(i);