(iop): Remove unused members assoc, notify.
(io_open): Remove unused parameters assoc, notify. Caller changed.
This commit is contained in:
parent
ed074ff6f2
commit
7d5a6b817e
3 changed files with 3 additions and 10 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue