diff options
| author | ProsperousPotato <ProsperousPotato@users.noreply.github.com> | 2026-01-09 20:12:22 +0000 |
|---|---|---|
| committer | ProsperousPotato <ProsperousPotato@users.noreply.github.com> | 2026-01-09 20:12:22 +0000 |
| commit | fdc609d76127ba5c3e326e67926455458cd6b07f (patch) | |
| tree | 8c382b8f6c15ed491301943316d3f32046fd7c0f /drw.c | |
| parent | 5fb19186ae431fdd2252044ebf67db96162f01b2 (diff) | |
fix indentation
Diffstat (limited to 'drw.c')
| -rw-r--r-- | drw.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -8,8 +8,6 @@ #include "drw.h" #include "util.h" -#define UTF_INVALID 0xFFFD - Drw * drw_create(Display *dpy, int screen, Window root, unsigned int w, unsigned int h) { @@ -42,8 +40,8 @@ drw_clr_create(Drw *drw, Clr *dest, const char *clrname) return; if (!XftColorAllocName(drw->dpy, DefaultVisual(drw->dpy, drw->screen), - DefaultColormap(drw->dpy, drw->screen), - clrname, dest)) + DefaultColormap(drw->dpy, drw->screen), + clrname, dest)) die("error, cannot allocate color '%s'", clrname); dest->pixel |= 0xff << 24; |
