From 44ee4b40b89a14283485db0174b9ee1581fd2222 Mon Sep 17 00:00:00 2001 From: Hodlinator <172445034+hodlinator@users.noreply.github.com> Date: Tue, 13 May 2025 15:43:10 +0200 Subject: [PATCH] doc: Fix error string typo Found while reviewing https://github.com/bitcoin/bitcoin/pull/31375 --- src/mp/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mp/util.cpp b/src/mp/util.cpp index 691ae0b3..309bb922 100644 --- a/src/mp/util.cpp +++ b/src/mp/util.cpp @@ -137,7 +137,7 @@ void ExecProcess(const std::vector& args) } argv.push_back(nullptr); if (execvp(argv[0], argv.data()) != 0) { - perror("execlp failed"); + perror("execvp failed"); _exit(1); } }