diff options
Diffstat (limited to 'src/crypto/mac/macs.c.in')
-rw-r--r-- | src/crypto/mac/macs.c.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/mac/macs.c.in b/src/crypto/mac/macs.c.in index 5f9a353..cf29e8d 100644 --- a/src/crypto/mac/macs.c.in +++ b/src/crypto/mac/macs.c.in @@ -102,7 +102,7 @@ bool fastd_mac_config(const char *name, const char *impl) { /** Returns information about the MAC with the specified name if there is an implementation available */ const fastd_mac_info_t* fastd_mac_info_get_by_name(const char *name) { - size_t i, j; + size_t i; for (i = 0; i < array_size(macs); i++) { if (strcmp(macs[i].name, name)) continue; |