Skip to content
Snippets Groups Projects
Commit ada5cbfb authored by Niels Möller's avatar Niels Möller
Browse files

(base16_encode_update_wrapper): Mark ctx argument

as UNUSED.

Rev: nettle/base16-meta.c:1.2
parent 59c300aa
No related branches found
No related tags found
No related merge requests found
...@@ -46,11 +46,9 @@ base16_encode_init(void *ctx) ...@@ -46,11 +46,9 @@ base16_encode_init(void *ctx)
{ (void) ctx; } { (void) ctx; }
static unsigned static unsigned
base16_encode_update_wrapper(void *ctx, uint8_t *dst, base16_encode_update_wrapper(void *ctx UNUSED, uint8_t *dst,
unsigned length, const uint8_t *src) unsigned length, const uint8_t *src)
{ {
(void) ctx;
base16_encode_update(dst, length, src); base16_encode_update(dst, length, src);
return BASE16_ENCODE_LENGTH(length); return BASE16_ENCODE_LENGTH(length);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment