aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/md
diff options
context:
space:
mode:
authorStephen J. Kiernan <stevek@FreeBSD.org>2017-02-13 18:52:26 +0000
committerStephen J. Kiernan <stevek@FreeBSD.org>2017-02-13 18:52:26 +0000
commite895e7fce7f5fabf36e2b0358cc7a0cefb631981 (patch)
tree7ee949006ff2c970f6cb6b4873e938e630944f76 /sys/dev/md
parentd2e6391342dc7681cb06c7047acabbef49574d13 (diff)
downloadsrc-e895e7fce7f5fabf36e2b0358cc7a0cefb631981.tar.gz
src-e895e7fce7f5fabf36e2b0358cc7a0cefb631981.zip
Fix typo where opening brace was needed.
Reported by: Michael Butler Reviewed by: sjg Approved by: sjg (mentor)
Notes
Notes: svn path=/head/; revision=313703
Diffstat (limited to 'sys/dev/md')
-rw-r--r--sys/dev/md/md.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c
index 819da7c85f87..c9c73bfafda4 100644
--- a/sys/dev/md/md.c
+++ b/sys/dev/md/md.c
@@ -1860,7 +1860,7 @@ g_md_dumpconf(struct sbuf *sb, const char *indent, struct g_geom *gp,
sbuf_printf(sb, "%s<type>%s</type>\n", indent,
type);
if ((mp->type == MD_VNODE && mp->vnode != NULL) ||
- (mp->type == MD_PRELOAD && mp->file[0] != '\0'))
+ (mp->type == MD_PRELOAD && mp->file[0] != '\0')) {
sbuf_printf(sb, "%s<file>", indent);
g_conf_printf_escaped(sb, "%s", mp->file);
sbuf_printf(sb, "</file>\n");