]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
make const
authorKonstantinos Margaritis <konstantinos@vectorcamp.gr>
Mon, 8 Feb 2021 17:19:52 +0000 (19:19 +0200)
committerKonstantinos Margaritis <konstantinos@vectorcamp.gr>
Mon, 8 Feb 2021 17:19:52 +0000 (19:19 +0200)
src/util/arch/common/simd_utils.h

index e0073fadc3376fcd87853ff28b67ca335c4a1dad..d8499ea2e57d9bf1ce47bc5ad1eae3daa2d09264 100644 (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);