Warnings purge: src/{crypto,hci,net}

This commit is contained in:
Marty Connor
2007-07-03 13:20:22 -04:00
parent 5f92f0bd82
commit c77704cb60
8 changed files with 15 additions and 6 deletions

View File

@@ -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;