Skip to content

Commit

Permalink
FIX: silenced incompatible function pointer warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Sep 2, 2021
1 parent f465469 commit e97679f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/n-crypt.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ typedef struct {
Register_Handle(SYM_AES, sizeof(AES_CTX), NULL);
Register_Handle(SYM_ECDH, sizeof(ECC_CTX), NULL);
Register_Handle(SYM_RC4, sizeof(RC4_CTX), NULL);
Register_Handle(SYM_RSA, sizeof(RSA_CTX), RSA_free);
Register_Handle(SYM_RSA, sizeof(RSA_CTX), (REB_HANDLE_FREE_FUNC)RSA_free);
#ifndef EXCLUDE_CHACHA20POLY1305
Register_Handle(SYM_CHACHA20, sizeof(poly1305_context), NULL);
Register_Handle(SYM_POLY1305, sizeof(poly1305_context), NULL);
Expand Down

0 comments on commit e97679f

Please sign in to comment.