Fix a minor typo in the discover-client file descriptor check. Signed-off-by: Geoff Levand --- ui/common/discover-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/ui/common/discover-client.c +++ b/ui/common/discover-client.c @@ -46,7 +46,7 @@ struct discover_client* discover_client_ client->ops.cb_arg = cb_arg; client->fd = socket(AF_UNIX, SOCK_STREAM, 0); - if (!client->fd < 0) { + if (client->fd < 0) { pb_log("%s: socket: %s\n", __func__, strerror(errno)); goto out_err; }