From f69274a1c5d1788d91403b1ad073964ace0014a0 Mon Sep 17 00:00:00 2001 From: Greg Steuck Date: Tue, 29 Dec 2020 13:47:23 -0800 Subject: executor/common: repair clang complaint about bad indentation dashboard link: https://syzkaller.appspot.com/bug?extid=38fe37bc451a42e6c9a4 Reported-by: syzbot+38fe37bc451a42e6c9a4@syzkaller.appspotmail.com --- executor/common.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'executor/common.h') diff --git a/executor/common.h b/executor/common.h index 0361fac4e..d86011223 100644 --- a/executor/common.h +++ b/executor/common.h @@ -676,8 +676,9 @@ static void loop(void) if (current_time_ms() - start < program_timeout_ms) continue; #else - if (current_time_ms() - start < /*{{{PROGRAM_TIMEOUT_MS}}}*/) + if (current_time_ms() - start < /*{{{PROGRAM_TIMEOUT_MS}}}*/) { continue; + } #endif debug("killing hanging pid %d\n", pid); kill_and_wait(pid, &status); -- cgit mrf-deployment