summaryrefslogtreecommitdiff
path: root/src/parse/important.h
diff options
context:
space:
mode:
authorDeltaVonNeumann <deltavprogrammer@gmail.com>2023-06-17 10:19:19 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2023-06-17 10:19:19 +0100
commit365e3e252bc29408722e905703d90e53c980c732 (patch)
treea74dc47bc56f6a10c30d051090397acf7b519614 /src/parse/important.h
parent58f1673186a41b396d4ca4e13f43b502a305bf01 (diff)
downloadlibcss-365e3e252bc29408722e905703d90e53c980c732.tar.gz
libcss-365e3e252bc29408722e905703d90e53c980c732.tar.bz2
Avoid integer types with platform dependent size
Diffstat (limited to 'src/parse/important.h')
-rw-r--r--src/parse/important.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/important.h b/src/parse/important.h
index ba5e118..e939c4b 100644
--- a/src/parse/important.h
+++ b/src/parse/important.h
@@ -12,7 +12,7 @@
#include "parse/language.h"
css_error css__parse_important(css_language *c,
- const parserutils_vector *vector, int *ctx,
+ const parserutils_vector *vector, int32_t *ctx,
uint8_t *result);
void css__make_style_important(css_style *style);