]> granicus.if.org Git - graphviz/commitdiff
fix name of rebuild_vlists in an error message
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 30 Sep 2020 15:01:12 +0000 (08:01 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 30 Sep 2020 15:01:12 +0000 (08:01 -0700)
lib/dotgen/conc.c

index 367bf6c91020e4cf88bd70969bdab84454dfbb6b..136a15744e17606967fa96ab142844be6ee180b3 100644 (file)
@@ -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);
        }