]> git.sur5r.net Git - i3/i3/commitdiff
Fix typo in comment (thx sECuRE)
authorAxel Wagner <mail@merovius.de>
Sun, 20 Mar 2011 18:52:20 +0000 (19:52 +0100)
committerAxel Wagner <mail@merovius.de>
Sun, 20 Mar 2011 18:52:20 +0000 (19:52 +0100)
i3bar/src/ipc.c

index d5c180338da038ae313e682ae355f81022d95ed6..c6a85cf5b74f7c766e3d85608ec66ae9fe648e0d 100644 (file)
@@ -138,7 +138,7 @@ void got_data(struct ev_loop *loop, ev_io *watcher, int events) {
     DLOG("Got data!\n");
     int fd = watcher->fd;
 
-    /* First we only read the header, because we know it's length */
+    /* First we only read the header, because we know its length */
     uint32_t header_len = strlen(I3_IPC_MAGIC) + sizeof(uint32_t)*2;
     char *header = malloc(header_len);
     if (header == NULL) {