summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-06-12 23:44:21 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-06-12 23:44:21 +0200
commit7915533147ddaaf5480e52b7d817e11b36348e4a (patch)
treee419d3eea1c40cbf239455b821633be0f918f1e2
parente1d32e2258bb4438f761d96613411998f3be8d5f (diff)
downloadfastd-7915533147ddaaf5480e52b7d817e11b36348e4a.tar
fastd-7915533147ddaaf5480e52b7d817e11b36348e4a.zip
Remove an unused variable
-rw-r--r--src/crypto/mac/macs.c.in2
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;