mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-11-21 21:25:50 +00:00
Remove incorrect CRYB_USED annotations.
This commit is contained in:
parent
2e14488de0
commit
8b9a7766da
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