summaryrefslogtreecommitdiff
path: root/src/parse/language.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/language.h')
-rw-r--r--src/parse/language.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/language.h b/src/parse/language.h
index f7c8536..2ab4987 100644
--- a/src/parse/language.h
+++ b/src/parse/language.h
@@ -84,7 +84,7 @@ static inline bool tokenIsChar(const css_token *token, uint8_t c)
{
bool result = false;
- if (token != NULL && token->type == CSS_TOKEN_CHAR &&
+ if (token != NULL && token->type == CSS_TOKEN_CHAR &&
lwc_string_length(token->idata) == 1) {
char d = lwc_string_data(token->idata)[0];