From 510a7471348788fccba6b7c4b9f7b7cc9aee6ba9 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Mon, 21 Apr 2025 14:33:01 +0200 Subject: Always use unsigned char * for data buffers Before this commit I was inconsistently using one of void *, char * and uint8_t *. --- tools/300_solve_small/solve_small.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/300_solve_small') diff --git a/tools/300_solve_small/solve_small.c b/tools/300_solve_small/solve_small.c index d81ed51..2efbcb5 100644 --- a/tools/300_solve_small/solve_small.c +++ b/tools/300_solve_small/solve_small.c @@ -4,7 +4,7 @@ char *solver; int64_t size = 0; -char *buf; +unsigned char *buf; char *scrambles[] = { /* 12 optimal */ -- cgit v1.3