summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser.c b/src/parser.c
index 79b10ab..5f15d19 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -208,7 +208,7 @@ hubbub_error hubbub_parser_setopt(hubbub_parser *parser,
* \return HUBBUB_OK on success, appropriate error otherwise
*/
hubbub_error hubbub_parser_parse_chunk(hubbub_parser *parser,
- uint8_t *data, size_t len)
+ const uint8_t *data, size_t len)
{
parserutils_error perror;
hubbub_error error;
@@ -254,7 +254,7 @@ hubbub_error hubbub_parser_parse_chunk(hubbub_parser *parser,
* \return HUBBUB_OK on success, appropriate error otherwise
*/
hubbub_error hubbub_parser_parse_extraneous_chunk(hubbub_parser *parser,
- uint8_t *data, size_t len)
+ const uint8_t *data, size_t len)
{
hubbub_error error;