diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-02-27 11:39:47 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-02-27 11:39:47 +0100 |
| commit | 4c8feb4e71f2a1f01a5d548c519b095a3d706bc8 (patch) | |
| tree | 24321eee799032a4a54719352a85f7b3a0789e3d /executor/common_fuchsia.h | |
| parent | 083cfd0e4a471c4f76d872ce6b521e6443246b3a (diff) | |
executor: add newline in debug call
debug does not add newlines.
Diffstat (limited to 'executor/common_fuchsia.h')
| -rw-r--r-- | executor/common_fuchsia.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/common_fuchsia.h b/executor/common_fuchsia.h index a049bd17d..64cd37747 100644 --- a/executor/common_fuchsia.h +++ b/executor/common_fuchsia.h @@ -177,7 +177,7 @@ long syz_mmap(size_t addr, size_t size) zx_handle_t vmo; status = zx_vmo_create(size, 0, &vmo); if (status != ZX_OK) { - debug("zx_vmo_create failed with: %d", status); + debug("zx_vmo_create failed with: %d\n", status); return status; } status = zx_vmo_replace_as_executable(vmo, ZX_HANDLE_INVALID, &vmo); |
