Commit Diff


commit - 43e82adf0dc37411fdcc6406b3cdf5d572387b9f
commit + e941181f464e43765bab98509ef6524e688a46ff
blob - 5d64141076435ba30f9a02bb6749197c0f46ab4e
blob + 9f996400fa814557d6c8b628ddce0c0402bbea04
--- dwm.c
+++ 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]);
 }