From 7915533147ddaaf5480e52b7d817e11b36348e4a Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 12 Jun 2014 23:44:21 +0200 Subject: Remove an unused variable --- src/crypto/mac/macs.c.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3