Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Oct 2017 18:00:02 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r324700 - head/sys/boot/common
Message-ID:  <201710171800.v9HI02Hg062441@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710171800.v9HI02Hg062441>