diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-04-21 14:33:01 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-04-21 14:44:07 +0200 |
| commit | 510a7471348788fccba6b7c4b9f7b7cc9aee6ba9 (patch) | |
| tree | 58df7791242d9a4f52e80da93ad3af20ed5e3528 /tools/400_solvetest | |
| parent | 1d9b8acfeece68c4f55d2499d8aed127f98a383c (diff) | |
| download | nissy-core-510a7471348788fccba6b7c4b9f7b7cc9aee6ba9.tar.gz nissy-core-510a7471348788fccba6b7c4b9f7b7cc9aee6ba9.zip | |
Always use unsigned char * for data buffers
Before this commit I was inconsistently using one of void *, char *
and uint8_t *.
Diffstat (limited to 'tools/400_solvetest')
| -rw-r--r-- | tools/400_solvetest/solve_test.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/400_solvetest/solve_test.c b/tools/400_solvetest/solve_test.c index a4121a5..a724320 100644 --- a/tools/400_solvetest/solve_test.c +++ b/tools/400_solvetest/solve_test.c | |||
| @@ -5,8 +5,7 @@ | |||
| 5 | 5 | ||
| 6 | char *solver; | 6 | char *solver; |
| 7 | int64_t size = 0; | 7 | int64_t size = 0; |
| 8 | char *buf; | 8 | unsigned char *buf; |
| 9 | |||
| 10 | 9 | ||
| 11 | bool check_one(char *actual, char *expected) { | 10 | bool check_one(char *actual, char *expected) { |
| 12 | unsigned i; | 11 | unsigned i; |
