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
|
@ -40,7 +40,7 @@
|
|||
int
|
||||
echo(void)
|
||||
{
|
||||
pr("%s\n", player->argp[1] ? player->argp[1] : (s_char *)"");
|
||||
pr("%s\n", player->argp[1] ? player->argp[1] : "");
|
||||
|
||||
return RET_OK;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue