diff options
author | Marty Connor <mdc@etherboot.org> | 2007-07-03 13:20:22 -0400 |
---|---|---|
committer | Marty Connor <mdc@etherboot.org> | 2007-07-03 13:20:22 -0400 |
commit | c77704cb60731a8d4b3c5301720aeacfad83592f (patch) | |
tree | 63bc9ab41e3094de0c4815309b7b26bf32d43513 /src/crypto | |
parent | 5f92f0bd820647ce6f8847e26c0f42607efd4c8f (diff) | |
download | ipxe-c77704cb60731a8d4b3c5301720aeacfad83592f.tar.gz |
Warnings purge: src/{crypto,hci,net}
Diffstat (limited to 'src/crypto')
-rw-r--r-- | src/crypto/axtls/bigint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/axtls/bigint.c b/src/crypto/axtls/bigint.c index 55482f0a..253707e7 100644 --- a/src/crypto/axtls/bigint.c +++ b/src/crypto/axtls/bigint.c @@ -482,7 +482,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(__unused BI_CTX *ctx, bigint *biR, comp denom) { int i = biR->size - 1; long_comp r = 0; |