Commit b34aac09cb680bae0b3df7d64ec2fb4a8cd10e69

Francois Perrad 2019-10-19T16:24:55

remove extraneous comma

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tommath.h b/tommath.h
index b82477e..29e9b20 100644
--- a/tommath.h
+++ b/tommath.h
@@ -123,7 +123,7 @@ typedef enum {
    MP_MEM   = -2,  /* out of mem */
    MP_VAL   = -3,  /* invalid input */
    MP_ITER  = -4,  /* maximum iterations reached */
-   MP_BUF   = -5,  /* buffer overflow, supplied buffer too small */
+   MP_BUF   = -5   /* buffer overflow, supplied buffer too small */
 } mp_err;
 
 typedef enum {