From: Matthew Fernandez Date: Wed, 30 Sep 2020 15:01:12 +0000 (-0700) Subject: fix name of rebuild_vlists in an error message X-Git-Tag: 2.46.0~20^2^2~57^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17b01211db91dfcf4c2404e550ee25f9b36568d7;p=graphviz fix name of rebuild_vlists in an error message --- diff --git a/lib/dotgen/conc.c b/lib/dotgen/conc.c index 367bf6c91..136a15744 100644 --- a/lib/dotgen/conc.c +++ b/lib/dotgen/conc.c @@ -160,11 +160,11 @@ static void rebuild_vlists(graph_t * g) for (r = GD_minrank(g); r <= GD_maxrank(g); r++) { lead = GD_rankleader(g)[r]; if (lead == NULL) { - agerr(AGERR, "rebuiltd_vlists: lead is null for rank %d\n", r); + agerr(AGERR, "rebuild_vlists: lead is null for rank %d\n", r); longjmp(jbuf, 1); } else if (GD_rank(dot_root(g))[r].v[ND_order(lead)] != lead) { - agerr(AGERR, "rebuiltd_vlists: rank lead %s not in order %d of rank %d\n", + agerr(AGERR, "rebuild_vlists: rank lead %s not in order %d of rank %d\n", agnameof(lead), ND_order(lead), r); longjmp(jbuf, 1); }