Skip to content

Commit c2b5f8d

Browse files
committed
Apply clang-format
1 parent bb552dc commit c2b5f8d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

core/threaded/reactor_threaded.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,11 @@ bool wait_until(instant_t wait_until_time, lf_cond_t* condition) {
202202
// Check whether we actually need to wait, or if we have already passed the timepoint.
203203
interval_t wait_duration = wait_until_time - lf_time_physical();
204204
if (wait_duration < lf_min_sleep_duration) {
205-
LF_PRINT_DEBUG("Wait time " PRINTF_TIME " is less than lf_min_sleep_duration " PRINTF_TIME ". Performing busy wait.",
205+
LF_PRINT_DEBUG("Wait time " PRINTF_TIME " is less than lf_min_sleep_duration " PRINTF_TIME
206+
". Performing busy wait.",
206207
wait_duration, lf_min_sleep_duration);
207208
while (lf_time_physical() < wait_until_time) {
208-
//Busy wait
209+
// Busy wait
209210
}
210211
return true;
211212
}

0 commit comments

Comments
 (0)