svn commit: r251303 - stable/9/sys/geom
Jaakko Heinonen
jh at FreeBSD.org
Mon Jun 3 16:09:24 UTC 2013
Author: jh
Date: Mon Jun 3 16:09:23 2013
New Revision: 251303
URL: http://svnweb.freebsd.org/changeset/base/251303
Log:
MFC r250868: Remove an extra semicolon from the DOT language output.
PR: kern/178540
Modified:
stable/9/sys/geom/geom_dump.c
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/geom/geom_dump.c
==============================================================================
--- stable/9/sys/geom/geom_dump.c Mon Jun 3 16:05:34 2013 (r251302)
+++ stable/9/sys/geom/geom_dump.c Mon Jun 3 16:09:23 2013 (r251303)
@@ -104,7 +104,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);
}
More information about the svn-src-stable-9
mailing list