aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/reader.h2
-rw-r--r--src/stack.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/reader.h b/src/reader.h
index 1b0a80c2..3ed4ecc8 100644
--- a/src/reader.h
+++ b/src/reader.h
@@ -169,7 +169,7 @@ push_byte(SerdReader* reader, Ref ref, const int c)
assert(c != EOF);
SERD_STACK_ASSERT_TOP(reader, ref);
- uint8_t* const s = serd_stack_push(&reader->stack, 1);
+ uint8_t* const s = (uint8_t*)serd_stack_push(&reader->stack, 1);
SerdNode* const node = (SerdNode*)(reader->stack.buf + ref);
++node->n_bytes;
if (!(c & 0x80)) { // Starts with 0 bit, start of new character
diff --git a/src/stack.h b/src/stack.h
index e95c5770..9c1d075a 100644
--- a/src/stack.h
+++ b/src/stack.h
@@ -61,7 +61,7 @@ serd_stack_free(SerdStack* stack)
stack->size = 0;
}
-static inline uint8_t*
+static inline void*
serd_stack_push(SerdStack* stack, size_t n_bytes)
{
const size_t new_size = stack->size + n_bytes;