Fix agraph.c calloc warning (#474)

This commit is contained in:
Khairul Azhar Kasmiran 2021-01-28 00:02:08 +08:00 committed by GitHub
parent 3a53a0a1d7
commit ca0d8d0e3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,7 +84,7 @@ typedef struct rz_ascii_graph_t {
RzList *back_edges;
RzList *long_edges;
struct layer_t *layers;
int n_layers;
unsigned int n_layers;
RzList *dists; /* RzList<struct dist_t> */
RzList *edges; /* RzList<AEdge> */
RzAGraphHits ghits;