about summary refs log tree commit diff
path: root/dmenu.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2015-09-28 00:38:17 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-09-28 00:38:17 +0200
commitd5ce8df9d9a86bf0d1cb97e4cfe4cd6951f2f1f5 (patch)
tree5c08a583b66ba2cc6d57bd98cdf64629c8ef5b9b /dmenu.c
parentRemove function prototypes and reorder functions accordingly (diff)
downloaddmenu-d5ce8df9d9a86bf0d1cb97e4cfe4cd6951f2f1f5.tar.gz
dmenu-d5ce8df9d9a86bf0d1cb97e4cfe4cd6951f2f1f5.tar.bz2
dmenu-d5ce8df9d9a86bf0d1cb97e4cfe4cd6951f2f1f5.zip
minor style fix
Diffstat (limited to '')
-rw-r--r--dmenu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dmenu.c b/dmenu.c
index 32a8330..071cbc1 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -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;