From a6644e831bbd005af1a92f6614bf901764d6eac8 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Fri, 14 Jan 2022 20:57:03 +0100 Subject: [PATCH] Fix code style Limit to 80 chars. --- app/src/aoa_hid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/aoa_hid.c b/app/src/aoa_hid.c index abf74cf9..9de918bc 100644 --- a/app/src/aoa_hid.c +++ b/app/src/aoa_hid.c @@ -343,8 +343,8 @@ run_aoa_thread(void *data) { if (ack_to_wait != SC_SEQUENCE_INVALID) { LOGD("Waiting ack from server sequence=%" PRIu64_, ack_to_wait); - // Do not block the loop indefinitely if the ack never comes (it should - // never happen) + // Do not block the loop indefinitely if the ack never comes (it + // should never happen) sc_tick deadline = sc_tick_now() + SC_TICK_FROM_MS(500); enum sc_acksync_wait_result result = sc_acksync_wait(aoa->acksync, ack_to_wait, deadline);