svn commit: r324700 - head/sys/boot/common
Ed Maste
emaste at FreeBSD.org
Tue Oct 17 18:00:03 UTC 2017
Author: emaste
Date: Tue Oct 17 18:00:01 2017
New Revision: 324700
URL: https://svnweb.freebsd.org/changeset/base/324700
Log:
loader: initialize dv_cleanup in md.c to eliminate clang warning
Submitted by: Zakary Nafziger <worldofzak at gmail.com>
Sponsored by: The FreeBSD Foundation
Modified:
head/sys/boot/common/md.c
Modified: head/sys/boot/common/md.c
==============================================================================
--- head/sys/boot/common/md.c Tue Oct 17 17:57:18 2017 (r324699)
+++ head/sys/boot/common/md.c Tue Oct 17 18:00:01 2017 (r324700)
@@ -73,7 +73,8 @@ struct devsw md_dev = {
md_open,
md_close,
noioctl,
- md_print
+ md_print,
+ NULL
};
static int
More information about the svn-src-all
mailing list