From 9120f132edffe4e05a31179c18453979656ffd3a Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 28 Jan 2016 16:24:07 +0100 Subject: Fix debug message printing the wrong timeout value --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 2e4439c..4f792c4 100644 --- a/src/main.c +++ b/src/main.c @@ -189,7 +189,7 @@ static int main_loop(int listenfd) to = usb_get_timeout(); usbmuxd_log(LL_FLOOD, "USB timeout is %d ms", to); dto = device_get_timeout(); - usbmuxd_log(LL_FLOOD, "Device timeout is %d ms", to); + usbmuxd_log(LL_FLOOD, "Device timeout is %d ms", dto); if(dto < to) to = dto; -- cgit v1.1-32-gdbae