From: Stephen Seo Date: Wed, 25 Sep 2024 04:14:01 +0000 (+0900) Subject: backport: StringPart's extra type to uintptr_t X-Git-Tag: 1.0~26 X-Git-Url: https://git.seodisparate.com/tbm-edit-settings.jpg?a=commitdiff_plain;h=8a2dd6770aa42a6591284097206961e569be1e56;p=c_simple_http backport: StringPart's extra type to uintptr_t --- diff --git a/src/helpers.h b/src/helpers.h index 4a63834..137bf06 100644 --- a/src/helpers.h +++ b/src/helpers.h @@ -19,6 +19,7 @@ // Standard library includes. #include +#include // Third-party includes. #include @@ -26,7 +27,7 @@ typedef struct C_SIMPLE_HTTP_String_Part { char *buf; size_t size; - size_t extra; + uintptr_t extra; } C_SIMPLE_HTTP_String_Part; void c_simple_http_cleanup_attr_string_part(C_SIMPLE_HTTP_String_Part **);