Skip to content

Commit

Permalink
Use size_t for poly_t length
Browse files Browse the repository at this point in the history
  • Loading branch information
jtraglia committed Sep 12, 2023
1 parent c4337ed commit a0043b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c_kzg_4844.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
/** Internal representation of a polynomial. */
typedef struct {
fr_t *evals;
uint64_t length;
size_t length;
} poly_t;

///////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit a0043b1

Please sign in to comment.