Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
412d8e1f
Commit
412d8e1f
authored
Feb 10, 2009
by
Niels Möller
Browse files
(base16_encode_update_wrapper): Mark ctx argument
as UNUSED. Rev: nettle/base16-meta.c:1.2
parent
9fbecffe
Changes
1
Hide whitespace changes
Inline
Side-by-side
nettle/base16-meta.c
View file @
412d8e1f
...
...
@@ -46,11 +46,9 @@ base16_encode_init(void *ctx)
{
(
void
)
ctx
;
}
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
)
{
(
void
)
ctx
;
base16_encode_update
(
dst
,
length
,
src
);
return
BASE16_ENCODE_LENGTH
(
length
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment