aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2015-11-08 20:38:00 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-11-08 20:38:00 +0100
commite941181f464e43765bab98509ef6524e688a46ff (patch)
treedf61e259e09d8668ae978d8ddb1c0f8070b2d362
parent43e82adf0dc37411fdcc6406b3cdf5d572387b9f (diff)
sort include + whitespace fix
-rw-r--r--dwm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dwm.c b/dwm.c
index 5d64141..9f99640 100644
--- a/dwm.c
+++ b/dwm.c
@@ -22,8 +22,8 @@
*/
#include <errno.h>
#include <locale.h>
-#include <stdarg.h>
#include <signal.h>
+#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
@@ -1435,8 +1435,8 @@ setfocus(Client *c) {
if(!c->neverfocus) {
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
XChangeProperty(dpy, root, netatom[NetActiveWindow],
- XA_WINDOW, 32, PropModeReplace,
- (unsigned char *) &(c->win), 1);
+ XA_WINDOW, 32, PropModeReplace,
+ (unsigned char *) &(c->win), 1);
}
sendevent(c, wmatom[WMTakeFocus]);
}