Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
Remove declaration of unused static variable
Browse files Browse the repository at this point in the history
The declaration is useless and triggers a warning with clang 3.5 (in
code that's built with -Werror)

Change-Id: I8fc42178df264509dcce6e1f1ba318bf849307e3
Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
  • Loading branch information
Bernhard Rosenkraenzer authored and Bernhard Rosenkraenzer committed May 12, 2014
1 parent 9428a28 commit 7fb0844
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions libmincrypt/p256.c
Expand Up @@ -49,8 +49,6 @@ const p256_int SECP256r1_b = // curve b
{{0x27d2604b, 0x3bce3c3e, 0xcc53b0f6, 0x651d06b0,
0x769886bc, 0xb3ebbd55, 0xaa3a93e7, 0x5ac635d8}};

static const p256_int p256_one = P256_ONE;

void p256_init(p256_int* a) {
memset(a, 0, sizeof(*a));
}
Expand Down

0 comments on commit 7fb0844

Please sign in to comment.