The maximum number of references (32K) for the WORK order was exceeded.

This commit is contained in:
Enno Rehling 2005-05-29 01:11:52 +00:00
parent e74b1c2267
commit ff265f489c
2 changed files with 3 additions and 2 deletions

View File

@ -3701,6 +3701,7 @@ static void
defaultorders (void)
{
region *r;
return;
for (r=regions;r;r=r->next) {
unit *u;
for (u=r->units;u;u=u->next) {

View File

@ -49,8 +49,8 @@ static int nlocales = 0;
#ifdef SHARE_ORDERS
typedef struct order_data {
char * _str;
int _refcount : 16;
int _lindex : 8;
int _refcount : 20;
int _lindex : 4;
keyword_t _keyword;
} order_data;
#endif