]> git.sur5r.net Git - i3/i3/commitdiff
little style fixes
authorMichael Stapelberg <michael@stapelberg.de>
Sat, 24 Jul 2010 10:34:27 +0000 (12:34 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 24 Jul 2010 10:34:27 +0000 (12:34 +0200)
src/config.c

index 6d5f57f1f90a0f4ab0499a0b47afef85578c0455..0b4762df690089594b3946c87f3a16786ab7e793 100644 (file)
@@ -52,11 +52,10 @@ char *resolve_tilde(const char *path) {
         int res = glob(head, GLOB_TILDE, NULL, &globbuf);
         free(head);
         /* no match, or many wildcard matches are bad */
-        if(res == GLOB_NOMATCH || globbuf.gl_pathc != 1)
+        if (res == GLOB_NOMATCH || globbuf.gl_pathc != 1)
                 result = sstrdup(path);
-        else if (res != 0) {
+        else if (res != 0)
                 die("glob() failed");
-        }
         else {
                 head = globbuf.gl_pathv[0];
                 result = scalloc(strlen(head) + (tail ? strlen(tail) : 0) + 1);