allow bigger bodies than fit in a uint32_t

This commit is contained in:
Emiel Bruijntjes 2022-04-25 11:15:31 +02:00
parent 98deb04dac
commit edd0bb7028
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public:
* @param string char* to the 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(string, size);