From a3b3dfe8ef68c4fa2922388dad9d0637dc329495 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Tue, 20 Apr 2021 17:57:39 +0000 Subject: [PATCH] doc: Correct copypasta debugging message --- runtime/src/sandbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/sandbox.c b/runtime/src/sandbox.c index 876d73b..b40eae7 100644 --- a/runtime/src/sandbox.c +++ b/runtime/src/sandbox.c @@ -850,7 +850,7 @@ sandbox_allocate(struct sandbox_request *sandbox_request) /* Allocate the Stack */ if (sandbox_allocate_stack(sandbox) < 0) { - error_message = "failed to allocate sandbox heap and linear memory"; + error_message = "failed to allocate sandbox stack"; goto err_stack_allocation_failed; } sandbox->state = SANDBOX_ALLOCATED;