From: Michael Brown Date: Mon, 30 Jul 2007 01:58:22 +0000 (+0100) Subject: Inhibit compiler warning X-Git-Tag: v0.9.3~148 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74ad5014c508a7b1903f2d266f7bbb4198ce78bc;p=thirdparty%2Fipxe.git Inhibit compiler warning --- diff --git a/src/crypto/axtls/bigint.c b/src/crypto/axtls/bigint.c index 2551f593d..ee51c14d8 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;