summaryrefslogtreecommitdiff
path: root/src/parse/properties/play_during.c
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/properties/play_during.c
parent58f1673186a41b396d4ca4e13f43b502a305bf01 (diff)
downloadlibcss-365e3e252bc29408722e905703d90e53c980c732.tar.gz
libcss-365e3e252bc29408722e905703d90e53c980c732.tar.bz2
Avoid integer types with platform dependent size
Diffstat (limited to 'src/parse/properties/play_during.c')
-rw-r--r--src/parse/properties/play_during.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/properties/play_during.c b/src/parse/properties/play_during.c
index 54e048f..da7f236 100644
--- a/src/parse/properties/play_during.c
+++ b/src/parse/properties/play_during.c
@@ -28,10 +28,10 @@
* If the input is invalid, then \a *ctx remains unchanged.
*/
css_error css__parse_play_during(css_language *c,
- const parserutils_vector *vector, int *ctx,
+ const parserutils_vector *vector, int32_t *ctx,
css_style *result)
{
- int orig_ctx = *ctx;
+ int32_t orig_ctx = *ctx;
css_error error;
const css_token *token;
uint8_t flags = 0;