Skip to content

Commit

Permalink
mac/arch: hopefully fix compilation errors after refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
robertswiecki committed Dec 25, 2017
1 parent 9395c3f commit 4f526fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mac/arch.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ void arch_reapChild(run_t* run) {
for (;;) {
int status = 0;
while (wait4(run->pid, &status, options, NULL) != run->pid) {
if (run->global->timin.tmOut) {
if (run->global->timing.tmOut) {
subproc_checkTimeLimit(run);
usleep(0.20 * 1000000);
}
Expand Down Expand Up @@ -464,7 +464,7 @@ bool arch_archInit(honggfuzz_t* hfuzz) {
arch_sigs[SIGABRT].important = hfuzz->monitorSIGABRT;

/* Default is false */
arch_sigs[SIGVTALRM].important = hfuzz->tmoutVTALRM;
arch_sigs[SIGVTALRM].important = hfuzz->timing.tmoutVTALRM;

return true;
}
Expand Down

0 comments on commit 4f526fd

Please sign in to comment.