(iop): Remove unused members assoc, notify.

(io_open): Remove unused parameters assoc, notify.  Caller changed.
This commit is contained in:
Markus Armbruster 2006-03-29 19:19:47 +00:00
parent ed074ff6f2
commit 7d5a6b817e
3 changed files with 3 additions and 10 deletions

View file

@ -91,9 +91,7 @@ player_new(int s)
memset(lp, 0, sizeof(struct player));
if (s >= 0) {
/* real player, not dummy created by update and market update */
lp->iop = io_open(s,
IO_READ | IO_WRITE | IO_NBLOCK,
IO_BUFSIZE, 0, 0);
lp->iop = io_open(s, IO_READ | IO_WRITE | IO_NBLOCK, IO_BUFSIZE);
if (!lp->iop) {
free(lp);
return NULL;