mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-11-23 06:05:46 +00:00
Remove incorrect CRYB_USED annotations.
This commit is contained in:
parent
277e946f78
commit
5f4d82e99e
1 changed files with 2 additions and 2 deletions
|
@ -108,7 +108,7 @@ static struct t_case t_cases[] = {
|
|||
* Test functions
|
||||
*/
|
||||
static int
|
||||
t_aes_enc(char **desc CRYB_UNUSED, void *arg)
|
||||
t_aes_enc(char **desc, void *arg)
|
||||
{
|
||||
struct t_case *t = arg;
|
||||
uint8_t out[AES_BLOCK_LEN];
|
||||
|
@ -122,7 +122,7 @@ t_aes_enc(char **desc CRYB_UNUSED, void *arg)
|
|||
}
|
||||
|
||||
static int
|
||||
t_aes_dec(char **desc CRYB_UNUSED, void *arg)
|
||||
t_aes_dec(char **desc, void *arg)
|
||||
{
|
||||
struct t_case *t = arg;
|
||||
uint8_t out[AES_BLOCK_LEN];
|
||||
|
|
Loading…
Reference in a new issue