Skip to content

Commit 133a593

Browse files
authored
fix format
1 parent 06ed01d commit 133a593

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/fuzzer/FuzzerUtilPosix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ bool ExecuteCommand(const Command &Cmd, std::string *CmdOutput) {
106106
void SetTimer(int Seconds) {
107107
timer_t TimerId;
108108
struct itimerspec T {
109-
{ Seconds, 0 }, { Seconds, 0 }
109+
{Seconds, 0}, { Seconds, 0 }
110110
};
111111
SetSigaction(SIGALRM, AlarmHandler);
112112
if (timer_create(CLOCK_REALTIME, nullptr, &TimerId) == -1) {

0 commit comments

Comments
 (0)