From: ellson Date: Tue, 10 Nov 2009 04:34:06 +0000 (+0000) Subject: lose the extra commas X-Git-Tag: LAST_LIBGRAPH~32^2~1575 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f42294e4ddaba583021e209c4d99653150d5c880;p=graphviz lose the extra commas --- diff --git a/cmd/smyrna/gui/beacon.c b/cmd/smyrna/gui/beacon.c index 26000d85b..78ebab90a 100644 --- a/cmd/smyrna/gui/beacon.c +++ b/cmd/smyrna/gui/beacon.c @@ -211,8 +211,8 @@ static void print_node(topview_node * n) int ind=0; char* val; attr_list* l=view->Topview->attributes; - printf("Node Summary\n",); - printf("-------------\n",); + printf("Node Summary\n"); + printf("-------------\n"); printf("name: %s\n",agnameof(n->Node)); for (;ind < l->attr_count;ind ++) { @@ -226,7 +226,7 @@ static void print_node(topview_node * n) } } } - printf("-------------\n",); + printf("-------------\n"); }