diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-09-28 00:38:17 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-09-28 00:38:17 +0200 |
commit | d5ce8df9d9a86bf0d1cb97e4cfe4cd6951f2f1f5 (patch) | |
tree | 5c08a583b66ba2cc6d57bd98cdf64629c8ef5b9b /dmenu.c | |
parent | ba75bb30fa1f458ea4d80a2858ffeaf9d49afbcc (diff) |
minor style fix
Diffstat (limited to 'dmenu.c')
-rw-r--r-- | dmenu.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7,6 +7,7 @@ #include <string.h> #include <strings.h> #include <time.h> + #include <X11/Xlib.h> #include <X11/Xatom.h> #include <X11/Xutil.h> @@ -622,7 +623,7 @@ main(int argc, char *argv[]) if (!strcmp(argv[i], "-v")) { /* prints version information */ puts("dmenu-"VERSION); exit(0); - } else if (!strcmp(argv[i], "-b")) /* appears at the bottom of the screen */ + } else if (!strcmp(argv[i], "-b")) /* appears at the bottom of the screen */ topbar = false; else if (!strcmp(argv[i], "-f")) /* grabs keyboard before reading stdin */ fast = true; |