aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--executor/common_fuchsia.h2
-rw-r--r--pkg/csource/generated.go2
2 files changed, 2 insertions, 2 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);
diff --git a/pkg/csource/generated.go b/pkg/csource/generated.go
index 497b60da1..f58bf8e30 100644
--- a/pkg/csource/generated.go
+++ b/pkg/csource/generated.go
@@ -913,7 +913,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);