summaryrefslogtreecommitdiffstats
path: root/src/crypto
diff options
context:
space:
mode:
authorMichael Brown2007-07-30 03:58:22 +0200
committerMichael Brown2007-07-30 03:58:22 +0200
commit74ad5014c508a7b1903f2d266f7bbb4198ce78bc (patch)
treeb15363a733ee58c746d7a2333c8362ed4192de97 /src/crypto
parentTLS now working again. (diff)
downloadipxe-74ad5014c508a7b1903f2d266f7bbb4198ce78bc.tar.gz
ipxe-74ad5014c508a7b1903f2d266f7bbb4198ce78bc.tar.xz
ipxe-74ad5014c508a7b1903f2d266f7bbb4198ce78bc.zip
Inhibit compiler warning
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/axtls/bigint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/axtls/bigint.c b/src/crypto/axtls/bigint.c
index 2551f593..ee51c14d 100644
--- a/src/crypto/axtls/bigint.c
+++ b/src/crypto/axtls/bigint.c
@@ -473,7 +473,7 @@ bigint *bi_divide(BI_CTX *ctx, bigint *u, bigint *v, int is_mod)
/*
* Perform an integer divide on a bigint.
*/
-static bigint *bi_int_divide(BI_CTX *ctx, bigint *biR, comp denom)
+static bigint *bi_int_divide(BI_CTX *ctx __unused, bigint *biR, comp denom)
{
int i = biR->size - 1;
long_comp r = 0;