aboutsummaryrefslogtreecommitdiff
path: root/src/math/poly.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/poly.h')
-rw-r--r--src/math/poly.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/math/poly.h b/src/math/poly.h
index 664ca6b..83b909a 100644
--- a/src/math/poly.h
+++ b/src/math/poly.h
@@ -12,10 +12,10 @@
#include <stdbool.h>
typedef struct {
- int m;
- int e1;
- int e2;
- int e3;
+ unsigned int m;
+ unsigned int e1;
+ unsigned int e2;
+ unsigned int e3;
} polynomial_t;
/**