From: Michael J. Pounders Date: Sun, 21 Sep 2014 18:38:00 +0000 (-0400) Subject: Remove unused offset variable in src/ssl.h X-Git-Url: http://git.code-monkey.de/?p=umurmur.git;a=commitdiff_plain;h=1adc25d6aa245819d57dd817e3a34cc61ec9a37a Remove unused offset variable in src/ssl.h --- diff --git a/src/ssl.h b/src/ssl.h index f88e301..2d86a05 100644 --- a/src/ssl.h +++ b/src/ssl.h @@ -125,7 +125,7 @@ static inline void SSLi_hash2hex(uint8_t *hash, char *out) } static inline void SSLi_hex2hash(char *in, uint8_t *hash) { - int i, offset = 0; + int i; char byte[3]; int scanned;