Remove incorrect CRYB_USED annotations.

This commit is contained in:
Dag-Erling Smørgrav 2017-03-15 10:22:24 +01:00
parent 277e946f78
commit 5f4d82e99e

View file

@ -108,7 +108,7 @@ static struct t_case t_cases[] = {
* Test functions * Test functions
*/ */
static int static int
t_aes_enc(char **desc CRYB_UNUSED, void *arg) t_aes_enc(char **desc, void *arg)
{ {
struct t_case *t = arg; struct t_case *t = arg;
uint8_t out[AES_BLOCK_LEN]; uint8_t out[AES_BLOCK_LEN];
@ -122,7 +122,7 @@ t_aes_enc(char **desc CRYB_UNUSED, void *arg)
} }
static int static int
t_aes_dec(char **desc CRYB_UNUSED, void *arg) t_aes_dec(char **desc, void *arg)
{ {
struct t_case *t = arg; struct t_case *t = arg;
uint8_t out[AES_BLOCK_LEN]; uint8_t out[AES_BLOCK_LEN];