mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-01 12:46:12 +00:00
ipc: fix typo - connec -> connect
This commit is contained in:
parent
4e4e6708bc
commit
5635cd3885
|
@ -143,7 +143,7 @@ ipc_connect(struct ipc_connection *ipc_c)
|
|||
|
||||
ret = connect(socket, (struct sockaddr *)&addr, sizeof(addr));
|
||||
if (ret < 0) {
|
||||
IPC_ERROR(ipc_c, "Failed to connec to socket %s: %s!", sock_file, strerror(errno));
|
||||
IPC_ERROR(ipc_c, "Failed to connect to socket %s: %s!", sock_file, strerror(errno));
|
||||
close(socket);
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue