summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'common.h')
-rw-r--r--common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/common.h b/common.h
index 6003cbf16..5ac37acba 100644
--- a/common.h
+++ b/common.h
@@ -323,7 +323,7 @@ typedef enum {
enum backend {
BKEND_XRENDER,
BKEND_GLX,
- BKEND_XR_GLX_HYBIRD,
+ BKEND_XR_GLX_HYBRID,
NUM_BKEND,
};
@@ -1720,7 +1720,7 @@ find_toplevel(session_t *ps, Window id) {
static inline bool
bkend_use_xrender(session_t *ps) {
return BKEND_XRENDER == ps->o.backend
- || BKEND_XR_GLX_HYBIRD == ps->o.backend;
+ || BKEND_XR_GLX_HYBRID == ps->o.backend;
}
/**
@@ -1729,7 +1729,7 @@ bkend_use_xrender(session_t *ps) {
static inline bool
bkend_use_glx(session_t *ps) {
return BKEND_GLX == ps->o.backend
- || BKEND_XR_GLX_HYBIRD == ps->o.backend;
+ || BKEND_XR_GLX_HYBRID == ps->o.backend;
}
/**