summaryrefslogtreecommitdiff
path: root/src/parse/language.h
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2017-09-04 14:56:51 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2017-09-04 14:56:51 +0100
commit2fcb157f28b152ba32e89baddbd811b0d6e76b79 (patch)
tree30f96332ac7993ff4acf88b4892f922a80ddd393 /src/parse/language.h
parent2fc4177a09cc6fc6706f84dbe157077a41b6e22b (diff)
downloadlibcss-2fcb157f28b152ba32e89baddbd811b0d6e76b79.tar.gz
libcss-2fcb157f28b152ba32e89baddbd811b0d6e76b79.tar.bz2
Strip trailing whitespace.
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];