Fix typo (thx julien)

This commit is contained in:
Axel Wagner 2011-01-01 15:19:55 +01:00
parent 8f0518c5c5
commit 4c7f131fc5
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ int init_connection(const char *socket_path) {
addr.sun_family = AF_LOCAL;
strcpy(addr.sun_path, sock_path);
if (connect(sockfd, (const struct sockaddr*) &addr, sizeof(struct sockaddr_un)) < 0) {
ELOG("Could not connct to i3!\n");
ELOG("Could not connect to i3!\n");
reconnect();
return 0;
}