Remove trailing coma

This commit is contained in:
Frank Denis 2017-09-13 12:03:24 +02:00
parent 3aa1c71de1
commit 5cf1de94ad

View File

@ -40,7 +40,7 @@ enum poly1305_state_flags_t {
poly1305_final_shift8 = 4,
poly1305_final_shift16 = 8,
poly1305_final_r2_r = 16, /* use [r^2,r] for the final block */
poly1305_final_r_1 = 32, /* use [r,1] for the final block */
poly1305_final_r_1 = 32 /* use [r,1] for the final block */
};
typedef struct poly1305_state_internal_t {