From 26ca3dd1e7871439e9476f49b96cbd8e48fb4fd1 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 4 Mar 2015 11:29:41 +0000 Subject: [PATCH 3/5] fd-passing test: numbers of things are unsigned (-Wsign-compare) --- test/fdpass.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/fdpass.c b/test/fdpass.c index 65ade4c..74235c6 100644 --- a/test/fdpass.c +++ b/test/fdpass.c @@ -429,7 +429,7 @@ test_too_many (Fixture *f, { #ifdef HAVE_UNIX_FD_PASSING DBusMessage *outgoing; - int i; + unsigned int i; test_connect (f, data); @@ -608,7 +608,7 @@ test_flood (Fixture *f, gconstpointer data) { #ifdef HAVE_UNIX_FD_PASSING - int i, j; + unsigned int i, j; DBusMessage *outgoing[SOME_MESSAGES]; dbus_uint32_t serial; -- 2.1.4