aboutsummaryrefslogtreecommitdiff
path: root/src/math/poly.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/poly.c')
-rw-r--r--src/math/poly.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/poly.c b/src/math/poly.c
index d97c4af..5ffd243 100644
--- a/src/math/poly.c
+++ b/src/math/poly.c
@@ -2714,7 +2714,7 @@ static int compare_poly(const void *a, const void *b) {
bool poly_exists(unsigned long m) { return m >= 2 && m <= 10000; }
-polynomial_t *poly_find(unsigned long m) {
+const polynomial_t *poly_find(unsigned long m) {
if (!poly_exists(m)) {
return NULL;
}