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
|
@ -73,7 +73,7 @@ tele(void)
|
|||
int kk;
|
||||
|
||||
kk = 1;
|
||||
while (player->argp[kk] != (s_char *)0) {
|
||||
while (player->argp[kk] != NULL) {
|
||||
if ((n = natarg(player->argp[kk], "for which country? ")) < 0) {
|
||||
if (opt_HIDDEN) {
|
||||
if (n < -1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue