make indent
diff --git a/libhfcommon/util.c b/libhfcommon/util.c index 610d1e3..73ec8f8 100644 --- a/libhfcommon/util.c +++ b/libhfcommon/util.c
@@ -224,8 +224,8 @@ return ret; } -static __thread bool rndThreadOnce = false; -static __thread uint64_t rndState[4]; +static __thread bool rndThreadOnce = false; +static __thread uint64_t rndState[4]; static void util_rndInitThread(void) { __attribute__((weak)) void arc4random_buf(void* buf, size_t nbytes);
diff --git a/libhfcommon/util.h b/libhfcommon/util.h index 4ad5f0d..3e8425e 100644 --- a/libhfcommon/util.h +++ b/libhfcommon/util.h
@@ -172,8 +172,8 @@ bool old; __asm__ __volatile__("lock bts %2, %0\n\t" "sbb %1, %1\n\t" - : "+m"(*addr), "=r"(old) - : "Ir"(offset % 8)); + : "+m"(*addr), "=r"(old) + : "Ir"(offset % 8)); return old; #else /* defined(__x86_64__) || defined(__i386__) */ return (ATOMIC_POST_OR(*addr, mask) & mask);
diff --git a/subproc.c b/subproc.c index 3def395..6d8b670 100644 --- a/subproc.c +++ b/subproc.c
@@ -268,7 +268,7 @@ environ = NULL; } for (size_t i = 0; i < ARRAYSIZE(run->global->exe.env_ptrs) && run->global->exe.env_ptrs[i]; - i++) { + i++) { putenv(run->global->exe.env_ptrs[i]); } char fuzzNo[128];