]> git.sur5r.net Git - i3/i3/blobdiff - libi3/ipc_connect.c
Update copyright notices and get rid of ranges
[i3/i3] / libi3 / ipc_connect.c
index d27e04678e0e50c511addf5b2c8639181227ed04..f493b4f11e6a6d118951afc058b9632c6621cd5b 100644 (file)
@@ -2,7 +2,7 @@
  * vim:ts=4:sw=4:expandtab
  *
  * i3 - an improved dynamic tiling window manager
- * © 2009-2013 Michael Stapelberg and contributors (see also: LICENSE)
+ * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
  *
  */
 #include <sys/types.h>
@@ -32,7 +32,7 @@ int ipc_connect(const char *socket_path) {
     memset(&addr, 0, sizeof(struct sockaddr_un));
     addr.sun_family = AF_LOCAL;
     strncpy(addr.sun_path, socket_path, sizeof(addr.sun_path) - 1);
-    if (connect(sockfd, (const struct sockaddr*)&addr, sizeof(struct sockaddr_un)) < 0)
+    if (connect(sockfd, (const struct sockaddr *)&addr, sizeof(struct sockaddr_un)) < 0)
         err(EXIT_FAILURE, "Could not connect to i3");
 
     return sockfd;