Browse Source

Inhibit compiler warning

tags/v0.9.3
Michael Brown 17 years ago
parent
commit
74ad5014c5
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/crypto/axtls/bigint.c

+ 1
- 1
src/crypto/axtls/bigint.c View File

473
 /*
473
 /*
474
  * Perform an integer divide on a bigint.
474
  * Perform an integer divide on a bigint.
475
  */
475
  */
476
-static bigint *bi_int_divide(BI_CTX *ctx, bigint *biR, comp denom)
476
+static bigint *bi_int_divide(BI_CTX *ctx __unused, bigint *biR, comp denom)
477
 {
477
 {
478
     int i = biR->size - 1;
478
     int i = biR->size - 1;
479
     long_comp r = 0;
479
     long_comp r = 0;

Loading…
Cancel
Save