diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-10-16 19:23:13 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-10-16 19:23:13 +0200 |
| commit | 8793f74c6cb46d87b53758c6d99705b8018ceeba (patch) | |
| tree | 19baf11b5fca42b250223b761dec6cc0f640dd47 /executor/executor_fuchsia.cc | |
| parent | 6222b00f4b1c59b46db26edf71980a6b03865492 (diff) | |
sys/fuchsia: more descriptions
Diffstat (limited to 'executor/executor_fuchsia.cc')
| -rw-r--r-- | executor/executor_fuchsia.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/executor/executor_fuchsia.cc b/executor/executor_fuchsia.cc index b01bf5880..490ec551c 100644 --- a/executor/executor_fuchsia.cc +++ b/executor/executor_fuchsia.cc @@ -30,7 +30,8 @@ int main(int argc, char** argv) long execute_syscall(call_t* c, long a0, long a1, long a2, long a3, long a4, long a5, long a6, long a7, long a8) { - long res = c->call(a0, a1, a2, a3, a4, a5, a6, a7, a8); + long res = ZX_ERR_INVALID_ARGS; + NONFAILING(res = c->call(a0, a1, a2, a3, a4, a5, a6, a7, a8)); errno = res; return res; } |
