diff options
| author | Cameron Cawley <ccawley2011@gmail.com> | 2025-10-02 19:53:14 +0100 |
|---|---|---|
| committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2026-02-17 20:06:33 +0100 |
| commit | fcd961817f87e0c52ed173e6c0866437becd6fca (patch) | |
| tree | 9ca681c42b62965e9d53af6d383efab65421f52c /functable.c | |
| parent | b9a22d68bfee523a7b5f100b08af7deb8619dcd8 (diff) | |
| download | Project-Tick-fcd961817f87e0c52ed173e6c0866437becd6fca.tar.gz Project-Tick-fcd961817f87e0c52ed173e6c0866437becd6fca.zip | |
Simplify types used in chunkset code
Diffstat (limited to 'functable.c')
| -rw-r--r-- | functable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functable.c b/functable.c index 632115c586..b3c611622c 100644 --- a/functable.c +++ b/functable.c @@ -371,7 +371,7 @@ static uint32_t adler32_copy_stub(uint32_t adler, uint8_t* dst, const uint8_t* s return functable.adler32_copy(adler, dst, src, len); } -static uint8_t* chunkmemset_safe_stub(uint8_t* out, uint8_t *from, unsigned len, unsigned left) { +static uint8_t* chunkmemset_safe_stub(uint8_t* out, uint8_t *from, size_t len, size_t left) { FUNCTABLE_INIT_ABORT; return functable.chunkmemset_safe(out, from, len, left); } |
