changed error message

fb-makefile
Claudius Holeksa 2022-01-08 18:01:45 +01:00
parent f0293269fd
commit 4c9a7a080a
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ ErrorOr<SocketPair> UnixNetwork::socketPair() {
int rc = ::socketpair(AF_LOCAL, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK,
0, sv);
if (rc < 0) {
return criticalError("Failed to create");
return criticalError("Failed to create socket pair");
}
SocketPair socket_pair;