summaryrefslogtreecommitdiff
path: root/source/html/css-parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/html/css-parse.c')
-rw-r--r--source/html/css-parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/html/css-parse.c b/source/html/css-parse.c
index e395e933..7fd8571a 100644
--- a/source/html/css-parse.c
+++ b/source/html/css-parse.c
@@ -165,7 +165,7 @@ static void css_lex_init(fz_context *ctx, struct lexbuf *buf, const char *s, con
buf->string_len = 0;
}
-static int iswhite(int c)
+static inline int iswhite(int c)
{
return c == ' ' || c == '\t' || c == '\r' || c == '\n' || c == '\f';
}