From: Stephen Seo Date: Wed, 25 Sep 2024 04:14:01 +0000 (+0900) Subject: Change StringPart's extra type to uintptr_t X-Git-Tag: 1.0~24^2~7 X-Git-Url: https://git.seodisparate.com/js/bootstrap.bundle.min.js?a=commitdiff_plain;h=4e670d24c88f81329e9312f3b053b7c1d24531fc;p=c_simple_http Change 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 **);