Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 03 Sep 2019 14:07:25 -0000
From:      Mariusz Zaborski <oshogbo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r346115 - head/sys/contrib/libnv
Message-ID:  <201904110424.x3B4Ofnq002088@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: oshogbo
Date: Thu Apr 11 04:24:41 2019
New Revision: 346115
URL: https://svnweb.freebsd.org/changeset/base/346115

Log:
  The nvlist_report_missing is also used by the cnvlist.
  It can't be a static one.
  
  Reported by:	jenkins
  MFC after:	2 weeks

Modified:
  head/sys/contrib/libnv/nvlist.c

Modified: head/sys/contrib/libnv/nvlist.c
==============================================================================
--- head/sys/contrib/libnv/nvlist.c	Thu Apr 11 04:22:06 2019	(r346114)
+++ head/sys/contrib/libnv/nvlist.c	Thu Apr 11 04:24:41 2019	(r346115)
@@ -324,7 +324,7 @@ nvlist_set_flags(nvlist_t *nvl, int flags)
 	nvl->nvl_flags = flags;
 }
 
-static void
+void
 nvlist_report_missing(int type, const char *name)
 {
 





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