diff --git a/utest/test_post_fork.c b/utest/test_post_fork.c index 2bc8132eb..d6e87f2ba 100644 --- a/utest/test_post_fork.c +++ b/utest/test_post_fork.c @@ -45,7 +45,7 @@ static void* xmalloc(size_t n) void* tmp; tmp = malloc(n); if (tmp == NULL) { - fprintf(stderr, "You are about to die\n"); + fprintf(stderr, "Failed to allocate memory for the test payload.\n"); exit(1); } else { return tmp;