From: Matthew Fernandez Date: Sun, 7 Aug 2022 16:47:02 +0000 (-0700) Subject: gvpr compile.c: wrap some long lines X-Git-Tag: 5.0.1~9^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84519f72bb03cc628ac6b090b77a912261338e77;p=graphviz gvpr compile.c: wrap some long lines This will make an upcoming change more readable. --- diff --git a/lib/gvpr/compile.c b/lib/gvpr/compile.c index 13cdb19c5..ee047f1a7 100644 --- a/lib/gvpr/compile.c +++ b/lib/gvpr/compile.c @@ -540,7 +540,9 @@ static int lookup(Expr_t * pgm, Agobj_t * objp, Exid_t * sym, Extype_t * v, Agsym_t *gsym = agattrsym(objp, sym->name); if (!gsym) { gsym = agattr(agroot(agraphof(objp)), AGTYPE(objp), sym->name, ""); - error(ERROR_WARNING, "Using value of uninitialized %s attribute \"%s\" of \"%s\"", kindOf (objp), sym->name, nameOf(pgm, objp, state->tmp)); + error(ERROR_WARNING, + "Using value of uninitialized %s attribute \"%s\" of \"%s\"", + kindOf (objp), sym->name, nameOf(pgm, objp, state->tmp)); } v->string = agxget(objp, gsym); } @@ -1332,7 +1334,9 @@ getval(Expr_t * pgm, Exnode_t * node, Exid_t * sym, Exref_t * ref, else { if (!gsym) { gsym = agattr(agroot(agraphof(objp)), AGTYPE(objp), name, ""); - error(ERROR_WARNING, "Using value of %s uninitialized attribute \"%s\" of \"%s\" in aget()", kindOf (objp), name, nameOf(pgm, objp, state->tmp)); + error(ERROR_WARNING, + "Using value of %s uninitialized attribute \"%s\" of \"%s\" in aget()", + kindOf (objp), name, nameOf(pgm, objp, state->tmp)); } v.string = agxget(objp, gsym); }