Remove commented out logerror() calls

Probably ancient debug cruft.
This commit is contained in:
Markus Armbruster 2008-11-16 21:13:36 -05:00
parent cebba0587c
commit 1417a3442d
5 changed files with 3 additions and 23 deletions

View file

@ -208,7 +208,6 @@ check_market(void)
double gain;
double price;
/* logerror("Checking the market.\n");*/
for (n = 0; getcomm(n, &comm); n++) {
if (comm.com_maxbidder == comm.com_owner || comm.com_owner == 0)
continue;
@ -268,6 +267,5 @@ check_market(void)
comm.com_owner = 0;
putcomm(n, &comm);
}
/* logerror("Done checking the market.\n");*/
return RET_OK;
}