aboutsummaryrefslogtreecommitdiff
path: root/src/math/poly.c
diff options
context:
space:
mode:
authorJ08nY2017-04-05 12:09:33 +0200
committerJ08nY2017-04-05 12:09:33 +0200
commitf25a2b7bfed27160173ae62e8552f27e8c59ee58 (patch)
treed168a6384b4d03720202d72cd6a52e969c0e7be0 /src/math/poly.c
parent0ee212016a154eeba262931ac91a29fc05c8dcf2 (diff)
downloadecgen-f25a2b7bfed27160173ae62e8552f27e8c59ee58.tar.gz
ecgen-f25a2b7bfed27160173ae62e8552f27e8c59ee58.tar.zst
ecgen-f25a2b7bfed27160173ae62e8552f27e8c59ee58.zip
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 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);