Remove an extra semicolon from the DOT language output.

PR:		kern/178540
Submitted by:	Trond Endrestol
MFC after:	1 week
This commit is contained in:
Jaakko Heinonen 2013-05-21 18:40:54 +00:00
parent ff8d43757d
commit 9641a51279
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=250868

View File

@ -105,7 +105,7 @@ g_confdot(void *p, int flag )
sbuf_printf(sb, "digraph geom {\n");
LIST_FOREACH(mp, &g_classes, class)
g_confdot_class(sb, mp);
sbuf_printf(sb, "};\n");
sbuf_printf(sb, "}\n");
sbuf_finish(sb);
}