diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-06-12 23:44:21 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-06-12 23:44:21 +0200 |
commit | 7915533147ddaaf5480e52b7d817e11b36348e4a (patch) | |
tree | e419d3eea1c40cbf239455b821633be0f918f1e2 /src | |
parent | e1d32e2258bb4438f761d96613411998f3be8d5f (diff) | |
download | fastd-7915533147ddaaf5480e52b7d817e11b36348e4a.tar fastd-7915533147ddaaf5480e52b7d817e11b36348e4a.zip |
Remove an unused variable
Diffstat (limited to 'src')
-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; |