From 5050a95c01b20e409153d7de0da649e43b5239f3 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Mon, 16 Jun 2014 10:57:41 +0300 Subject: [PATCH] HDP: trivial: Make code more readable --- profiles/health/hdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/health/hdp.c b/profiles/health/hdp.c index d64edb8ff..d256c9f09 100644 --- a/profiles/health/hdp.c +++ b/profiles/health/hdp.c @@ -1505,8 +1505,8 @@ static gboolean check_echo(GIOChannel *io_chan, GIOCondition cond, } fd = g_io_channel_unix_get_fd(io_chan); - len = read(fd, buf, sizeof(buf)); + len = read(fd, buf, sizeof(buf)); if (len != HDP_ECHO_LEN) { value = FALSE; goto end; -- 2.47.3