summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorChristopher Jeffrey <chjjeffrey@gmail.com>2014-01-02 12:33:57 -0600
committerChristopher Jeffrey <chjjeffrey@gmail.com>2014-01-02 12:33:57 -0600
commit978dde64920e0e2357225cf0ca6e8865a44c7d7e (patch)
tree4741ff68f93b7718d73bd4069142a9555f25ce85 /common.h
parent44a13b4e767eef1985a4a34723b7cc279e1dc160 (diff)
downloadtdebase-978dde64920e0e2357225cf0ca6e8865a44c7d7e.tar.gz
tdebase-978dde64920e0e2357225cf0ca6e8865a44c7d7e.zip
Fix typo: s/hybird/hybrid/
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;
}
/**