allow bigger bodies than fit in a uint32_t
This commit is contained in:
parent
98deb04dac
commit
edd0bb7028
|
|
@ -50,7 +50,7 @@ public:
|
||||||
* @param string char* to the string
|
* @param string char* to the string
|
||||||
* @param size size of string
|
* @param size size of string
|
||||||
*/
|
*/
|
||||||
void add(const char *string, uint32_t size)
|
void add(const char *string, size_t size)
|
||||||
{
|
{
|
||||||
// append data
|
// append data
|
||||||
append(string, size);
|
append(string, size);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue