diff options
| -rw-r--r-- | st.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -298,13 +298,13 @@ typedef struct { | |||
| 298 | 298 | ||
| 299 | typedef union { | 299 | typedef union { |
| 300 | int i; | 300 | int i; |
| 301 | unsigned int ui; | 301 | uint ui; |
| 302 | float f; | 302 | float f; |
| 303 | const void *v; | 303 | const void *v; |
| 304 | } Arg; | 304 | } Arg; |
| 305 | 305 | ||
| 306 | typedef struct { | 306 | typedef struct { |
| 307 | unsigned int mod; | 307 | uint mod; |
| 308 | KeySym keysym; | 308 | KeySym keysym; |
| 309 | void (*func)(const Arg *); | 309 | void (*func)(const Arg *); |
| 310 | const Arg arg; | 310 | const Arg arg; |
| @@ -3076,7 +3076,7 @@ xinit(void) { | |||
| 3076 | 3076 | ||
| 3077 | xw.netwmpid = XInternAtom(xw.dpy, "_NET_WM_PID", False); | 3077 | xw.netwmpid = XInternAtom(xw.dpy, "_NET_WM_PID", False); |
| 3078 | XChangeProperty(xw.dpy, xw.win, xw.netwmpid, XA_CARDINAL, 32, | 3078 | XChangeProperty(xw.dpy, xw.win, xw.netwmpid, XA_CARDINAL, 32, |
| 3079 | PropModeReplace, (unsigned char *)&thispid, 1); | 3079 | PropModeReplace, (uchar *)&thispid, 1); |
| 3080 | 3080 | ||
| 3081 | xresettitle(); | 3081 | xresettitle(); |
| 3082 | XMapWindow(xw.dpy, xw.win); | 3082 | XMapWindow(xw.dpy, xw.win); |
