SERVER: fix clang warning
The fix is inline with the Linux coding style that forbids assignment in if condition Change-Id: I0b9d0b419d9c8b7a8c755e048d5faf72d1658ba2 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/87 Tested-by: jenkins Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>__archive__
parent
09fbc0ab86
commit
8e8ff02b74
|
@ -487,7 +487,8 @@ int server_loop(struct command_context *command_context)
|
|||
{
|
||||
if ((FD_ISSET(c->fd, &read_fds)) || c->input_pending)
|
||||
{
|
||||
if ((retval = service->input(c)) != ERROR_OK)
|
||||
retval = service->input(c);
|
||||
if (retval != ERROR_OK)
|
||||
{
|
||||
struct connection *next = c->next;
|
||||
if (service->type == CONNECTION_PIPE)
|
||||
|
|
Loading…
Reference in New Issue