Skip to content

Commit

Permalink
* rexx/addrinfo.c: fixed a wrongly generated error code due to mixed …
Browse files Browse the repository at this point in the history
…up code indentation. Address book entries of plain single persons of course never have a member list and this must not cause an error. This closes #647.
  • Loading branch information
tboeckel committed Oct 27, 2016
1 parent e26efa9 commit 87c29ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rexx/addrinfo.c
Expand Up @@ -148,9 +148,9 @@ void rx_addrinfo(UNUSED struct RexxHost *host, struct RexxParams *params, enum R
else
params->rc = RETURN_ERROR;
}
else
params->rc = RETURN_ERROR;
}
else
params->rc = RETURN_ERROR;
}
else
params->rc = RETURN_ERROR;
Expand Down

0 comments on commit 87c29ff

Please sign in to comment.