From 171cb33082983c145ac9818b94e38f486c5f407b Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 4 May 2019 14:02:25 +0100 Subject: Media queries: Selection: For now, we just say the condition matches. Signed-off-by: Michael Drake --- src/select/mq.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/select/mq.h b/src/select/mq.h index 5aa1404..a84822d 100644 --- a/src/select/mq.h +++ b/src/select/mq.h @@ -18,7 +18,8 @@ static inline bool mq_match_condition(css_mq_cond *cond) { /* TODO: Implement this. */ - return cond == NULL; + (void) cond; + return true; } /** -- cgit v1.2.3