make const

This commit is contained in:
Konstantinos Margaritis 2021-02-08 19:19:52 +02:00
parent 70c54ef144
commit d9874898c7

View File

@ -72,7 +72,7 @@ static inline void print_m128_4x32(const char *label, m128 vector) {
printf("\n");
}
static inline void print_m128_2x64(char *label, m128 vector) {
static inline void print_m128_2x64(const char *label, m128 vector) {
uint64_t ALIGN_ATTR(16) data[2];
store128(data, vector);
DEBUG_PRINTF("%s: ", label);