aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2020-07-23 19:32:10 -0400
committerDevin J. Pohly <djpohly@gmail.com>2020-07-23 19:32:10 -0400
commit53798dfbff8c8352e42be2f9c400cb4b66ca28fe (patch)
treeb975ac7eb51d0702df39a4d324b9177fa91d44c3
parent5d66ea8a99a1638b4210b2d2be9ccc644691eb44 (diff)
fix WLR_SURFACE macro
-rw-r--r--dwl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwl.c b/dwl.c
index 3609a38..e4ab735 100644
--- a/dwl.c
+++ b/dwl.c
@@ -42,7 +42,7 @@
#define LENGTH(X) (sizeof X / sizeof X[0])
#define END(A) ((A) + LENGTH(A))
#define TAGMASK ((1 << LENGTH(tags)) - 1)
-#define WLR_SURFACE(C) (c->isx11 ? c->xwayland_surface->surface : c->xdg_surface->surface)
+#define WLR_SURFACE(C) ((C)->isx11 ? (C)->xwayland_surface->surface : (C)->xdg_surface->surface)
/* enums */
enum { CurNormal, CurMove, CurResize }; /* cursor */