~ubuntu-branches/debian/squeeze/freeciv/squeeze

« back to all changes in this revision

Viewing changes to common/idex.c

  • Committer: Bazaar Package Importer
  • Author(s): Karl Goetz
  • Date: 2010-06-05 20:54:23 UTC
  • mfrom: (1.2.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20100605205423-k8214w6arwvu1wt0
Tags: 2.2.1-1
* New upstream release, thanks Ansgar Burchardt for help preparing
the package (Closes: 584589)
* Use 'Arrange widgets for small screens' by default
* Fix package dependencies

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
  assert(idex_city_hash == NULL);
61
61
  assert(idex_unit_hash == NULL);
62
62
 
63
 
  idex_city_hash = hash_new(hash_fval_int, hash_fcmp_int);
64
 
  idex_unit_hash = hash_new(hash_fval_int, hash_fcmp_int);
 
63
  idex_city_hash = hash_new(hash_fval_keyval, hash_fcmp_keyval);
 
64
  idex_unit_hash = hash_new(hash_fval_keyval, hash_fcmp_keyval);
65
65
}
66
66
 
67
67
/**************************************************************************