player.h rev. 1.9 changed struct player member argp to char *. The
changeset failed to adapt some s_char * operands. Fix.
This commit is contained in:
parent
6fdbf215d0
commit
24a07cd249
9 changed files with 15 additions and 15 deletions
|
@ -75,7 +75,7 @@ rout(void)
|
|||
if ((ip = whatitem(player->argp[1], "What item? ")) == 0)
|
||||
return RET_SYN;
|
||||
i_del = ip->i_vtype;;
|
||||
if (player->argp[2] == (s_char *)0) {
|
||||
if (player->argp[2] == NULL) {
|
||||
if ((str = getstring("(sects)? ", buf1)) == 0)
|
||||
return RET_SYN;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue