Fix indentation

This commit is contained in:
Deven Blake 2022-05-15 05:13:45 -04:00 committed by GitHub
parent c3a9319a40
commit d3c4e68444
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
rose.c
View File

@ -8,8 +8,8 @@ guint xid;
void setatom(int a, const char *v) void setatom(int a, const char *v)
{ {
XChangeProperty(dpy, xid, XChangeProperty(dpy, xid,
atoms[a], atoms[AtomUTF8], 8, PropModeReplace, atoms[a], atoms[AtomUTF8], 8, PropModeReplace,
(unsigned char *)v, strlen(v) + 1); (unsigned char *)v, strlen(v) + 1);
XSync(dpy, False); XSync(dpy, False);
} }