diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-08-24 10:58:54 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-08-24 10:59:27 +0200 |
| commit | 3f1aca4826c84d52da6047a8a5c9325727525c8d (patch) | |
| tree | 6c70adca77d6567e56a0118a1d14053b114fc744 /executor/executor.cc | |
| parent | f238fbd42d592056c2fd8434c7625945b00b2059 (diff) | |
executor: split a too long line
Diffstat (limited to 'executor/executor.cc')
| -rw-r--r-- | executor/executor.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/executor/executor.cc b/executor/executor.cc index 3e7110f24..3804607f5 100644 --- a/executor/executor.cc +++ b/executor/executor.cc @@ -684,7 +684,9 @@ void execute_call(thread_t* th) } cover_reset(th); - th->res = execute_syscall(call->sys_nr, th->args[0], th->args[1], th->args[2], th->args[3], th->args[4], th->args[5], th->args[6], th->args[7], th->args[8]); + th->res = execute_syscall(call->sys_nr, th->args[0], th->args[1], + th->args[2], th->args[3], th->args[4], th->args[5], + th->args[6], th->args[7], th->args[8]); th->reserrno = errno; th->cover_size = cover_read(th); th->fault_injected = false; |
