sowm: use Window for window and not int

This commit is contained in:
Dylan Araps 2019-10-19 10:55:21 +03:00
parent 589bb768d9
commit 7316c149b8
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E

3
sowm.c
View File

@ -23,7 +23,8 @@ struct key {
typedef struct client { typedef struct client {
struct client *next, *prev; struct client *next, *prev;
int f, wx, wy; int f, wx, wy;
unsigned int w, ww, wh; unsigned int ww, wh;
Window w;
} client; } client;
static void button_press(XEvent *e); static void button_press(XEvent *e);