Skip to content

Commit 44ee4b4

Browse files
committed
doc: Fix error string typo
Found while reviewing bitcoin/bitcoin#31375
1 parent 35944ff commit 44ee4b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mp/util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ void ExecProcess(const std::vector<std::string>& args)
137137
}
138138
argv.push_back(nullptr);
139139
if (execvp(argv[0], argv.data()) != 0) {
140-
perror("execlp failed");
140+
perror("execvp failed");
141141
_exit(1);
142142
}
143143
}

0 commit comments

Comments
 (0)