sort include + whitespace fix e941181f
Hiltjo Posthuma · 2015-11-08 20:38 1 file(s) · +3 −3
dwm.c +3 −3
22 22
 */
23 23
#include <errno.h>
24 24
#include <locale.h>
25 -
#include <stdarg.h>
26 25
#include <signal.h>
26 +
#include <stdarg.h>
27 27
#include <stdbool.h>
28 28
#include <stdio.h>
29 29
#include <stdlib.h>
1435 1435
	if(!c->neverfocus) {
1436 1436
		XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
1437 1437
		XChangeProperty(dpy, root, netatom[NetActiveWindow],
1438 -
 		                XA_WINDOW, 32, PropModeReplace,
1439 -
 		                (unsigned char *) &(c->win), 1);
1438 +
		                XA_WINDOW, 32, PropModeReplace,
1439 +
		                (unsigned char *) &(c->win), 1);
1440 1440
	}
1441 1441
	sendevent(c, wmatom[WMTakeFocus]);
1442 1442
}