Quellcode durchsuchen

Inhibit compiler warning

tags/v0.9.3
Michael Brown vor 17 Jahren
Ursprung
Commit
74ad5014c5
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      src/crypto/axtls/bigint.c

+ 1
- 1
src/crypto/axtls/bigint.c Datei anzeigen

@@ -473,7 +473,7 @@ bigint *bi_divide(BI_CTX *ctx, bigint *u, bigint *v, int is_mod)
473 473
 /*
474 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 478
     int i = biR->size - 1;
479 479
     long_comp r = 0;

Laden…
Abbrechen
Speichern