Fix warnings

This commit is contained in:
luboslenco
2025-12-16 14:25:31 +01:00
parent 8134e53647
commit 38a61078a7
31 changed files with 83 additions and 100 deletions
+1 -1
View File
@@ -378,7 +378,7 @@ buffer_t *buffer_create(uint32_t length) {
return b;
}
buffer_t *buffer_create_from_raw(char *raw, uint32_t length) {
buffer_t *buffer_create_from_raw(uint8_t *raw, uint32_t length) {
buffer_t *b = gc_alloc(sizeof(buffer_t));
b->buffer = raw;
b->length = length;