diff options
| author | 2016-01-28 16:24:07 +0100 | |
|---|---|---|
| committer | 2016-01-28 16:24:07 +0100 | |
| commit | 9120f132edffe4e05a31179c18453979656ffd3a (patch) | |
| tree | 845cff205ceb9c86bca7a7e12f2b33d7a1bb2456 /src/main.c | |
| parent | fc3982fa1e3e8972f8f49e2e35eef82e02f1deaf (diff) | |
| download | usbmuxd-9120f132edffe4e05a31179c18453979656ffd3a.tar.gz usbmuxd-9120f132edffe4e05a31179c18453979656ffd3a.tar.bz2 | |
Fix debug message printing the wrong timeout value
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -189,7 +189,7 @@ static int main_loop(int listenfd) | |||
| 189 | to = usb_get_timeout(); | 189 | to = usb_get_timeout(); |
| 190 | usbmuxd_log(LL_FLOOD, "USB timeout is %d ms", to); | 190 | usbmuxd_log(LL_FLOOD, "USB timeout is %d ms", to); |
| 191 | dto = device_get_timeout(); | 191 | dto = device_get_timeout(); |
| 192 | usbmuxd_log(LL_FLOOD, "Device timeout is %d ms", to); | 192 | usbmuxd_log(LL_FLOOD, "Device timeout is %d ms", dto); |
| 193 | if(dto < to) | 193 | if(dto < to) |
| 194 | to = dto; | 194 | to = dto; |
| 195 | 195 | ||
