1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

include: Use intptr_t to cast between pointers and ints

This commit is contained in:
Nick Wellnhofer
2025-01-03 20:50:08 +01:00
parent 41c10c0cec
commit ca81916023
7 changed files with 63 additions and 49 deletions

View File

@ -4916,7 +4916,7 @@ static int
htmlParseTryOrFinish(htmlParserCtxtPtr ctxt, int terminate) {
int ret = 0;
htmlParserInputPtr in;
ptrdiff_t avail = 0;
size_t avail = 0;
int cur;
htmlParserNodeInfo node_info;