Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissie-c committed Sep 15, 2015
2 parents 4b3c4c3 + aec4cde commit 08652e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/check_ipc.c
Expand Up @@ -102,7 +102,7 @@ exit_handler(int32_t rsignal, void *data)
{
qb_log(LOG_DEBUG, "caught signal %d", rsignal);
qb_ipcs_destroy(s1);
return -1;
exit(0);
}

static void
Expand Down Expand Up @@ -424,7 +424,7 @@ run_function_in_new_process(void (*run_ipc_server_fn)(void))

if (pid == 0) {
run_ipc_server_fn();
return 0;
exit(0);
}
return pid;
}
Expand Down

0 comments on commit 08652e5

Please sign in to comment.