From 5073b0f8a69e821c597ff6f239f16e5ac0fe6d3a Mon Sep 17 00:00:00 2001 From: Xin Shi Date: Wed, 4 Jan 2023 10:19:56 +0800 Subject: [PATCH] _dbus_loop_iterate: `timeout` can be defined as int all places where `timeout` is used can be represented as int. This MR is a response to issue #430. Signed-off-by: Xin Shi --- dbus/dbus-mainloop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbus/dbus-mainloop.c b/dbus/dbus-mainloop.c index c4b7151be..ffc692fbb 100644 --- a/dbus/dbus-mainloop.c +++ b/dbus/dbus-mainloop.c @@ -575,7 +575,7 @@ _dbus_loop_iterate (DBusLoop *loop, DBusList *link; int n_ready; int initial_serial; - long timeout; + int timeout; int orig_depth; retval = FALSE; -- 2.47.3