diff options
Diffstat (limited to 'src/math/poly.c')
| -rw-r--r-- | src/math/poly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/poly.c b/src/math/poly.c index 6a89061..5398d76 100644 --- a/src/math/poly.c +++ b/src/math/poly.c @@ -2706,7 +2706,7 @@ static polynomial_t ansi_pentanomials[] = { {1995, 1, 2, 37}, {1997, 1, 2, 835}, {1998, 1, 3, 1290}, {2000, 1, 2, 981}}; -int compare_poly(const void *a, const void *b) { +static int compare_poly(const void *a, const void *b) { const polynomial_t *one = a; const polynomial_t *other = b; return (one->m - other->m); |
