Fix agraph.c calloc warning

This commit is contained in:
Khairul Azhar Kasmiran 2021-02-06 02:33:39 +01:00 committed by pancake
parent 0131d7901a
commit c2080a6cb1

View File

@ -85,7 +85,7 @@ typedef struct r_ascii_graph_t {
RList *back_edges;
RList *long_edges;
struct layer_t *layers;
int n_layers;
unsigned int n_layers;
RList *dists; /* RList<struct dist_t> */
RList *edges; /* RList<AEdge> */
RAGraphHits ghits;