2014-11-28 15:04:28

by Andrei Emeltchenko

[permalink] [raw]
Subject: [PATCH] unit/gatt: Fix using possible negative return value

From: Andrei Emeltchenko <[email protected]>

---
unit/test-gatt.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/unit/test-gatt.c b/unit/test-gatt.c
index 703430c..af38e9f 100644
--- a/unit/test-gatt.c
+++ b/unit/test-gatt.c
@@ -648,11 +648,11 @@ static void test_server(gconstpointer data)

len = write(context->fd, pdu.data, pdu.size);

+ g_assert_cmpint(len, ==, pdu.size);
+
if (g_test_verbose())
util_hexdump('<', pdu.data, len, test_debug, "GATT: ");

- g_assert_cmpint(len, ==, pdu.size);
-
execute_context(context);
}

--
1.9.1