From 3345d505ad0b4e677230fe82eef95fc0c4652a4f Mon Sep 17 00:00:00 2001 From: Josh Datko Date: Tue, 1 Sep 2015 14:42:55 -0600 Subject: [PATCH] Removes unused variables. Produced compiler warning with unused variables. --- uECC.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/uECC.c b/uECC.c index ced6088..afd4578 100644 --- a/uECC.c +++ b/uECC.c @@ -2518,10 +2518,6 @@ int uECC_sign(const uint8_t private_key[uECC_BYTES], const uint8_t message_hash[uECC_BYTES], uint8_t signature[uECC_BYTES*2]) { uECC_word_t k[uECC_N_WORDS]; - uECC_word_t tmp[uECC_N_WORDS]; - uECC_word_t s[uECC_N_WORDS]; - uECC_word_t *k2[2] = {tmp, s}; - EccPoint p; uECC_word_t tries; for (tries = 0; tries < MAX_TRIES; ++tries) {