Skip to content

Commit e8ed4d4

Browse files
committed
[paint] fix some CI errors
1 parent c4ccab9 commit e8ed4d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

paint/sources/libs/io_mesh.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <memory.h>
99
#include <stdlib.h>
1010

11-
static uint32_t *u32_buffer_from_buffer(const uint8_t *const buffer, uint32_t count, uint32_t stride, uint32_t num_component, uint32_t stride_component,
11+
uint32_t *u32_buffer_from_buffer(const uint8_t *const buffer, uint32_t count, uint32_t stride, uint32_t num_component, uint32_t stride_component,
1212
func_memory_cast_u32 memory_cast) {
1313
assert(buffer != NULL);
1414
assert(count != 0);
@@ -36,7 +36,7 @@ static uint32_t *u32_buffer_from_buffer(const uint8_t *const buffer, uint32_t co
3636
return res;
3737
}
3838

39-
static float *float_buffer_from_buffer(const uint8_t *const buffer, uint32_t count, uint32_t stride, uint32_t num_component, uint32_t stride_component,
39+
float *float_buffer_from_buffer(const uint8_t *const buffer, uint32_t count, uint32_t stride, uint32_t num_component, uint32_t stride_component,
4040
func_memory_cast_float memory_cast) {
4141
assert(buffer != NULL);
4242
assert(count != 0);

0 commit comments

Comments
 (0)