diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-07-10 20:12:45 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-07-18 17:53:23 -0400 |
commit | 6b13f0c050c787012edd9edb61d7e58798754aa8 (patch) | |
tree | a8d07d537b01664d05928f81449213eb2ad1c9ab /lib | |
parent | 3422299dc28fa8257677d03cc1253e3c9bf17e9f (diff) | |
download | u-boot-6b13f0c050c787012edd9edb61d7e58798754aa8.tar.gz |
lib:sha1: remove unused constant
This prevents a clang warning.
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sha1.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/sha1.c b/lib/sha1.c index 0a5f68864c..05b17a259a 100644 --- a/lib/sha1.c +++ b/lib/sha1.c @@ -389,8 +389,6 @@ void sha1_hmac(const unsigned char *key, int keylen, memset (&ctx, 0, sizeof (sha1_context)); } -static const char _sha1_src[] = "_sha1_src"; - #ifdef SELF_TEST /* * FIPS-180-1 test vectors |