svn commit: r346115 - head/sys/contrib/libnv

Mariusz Zaborski oshogbo at FreeBSD.org
Tue Sep 3 14:07:25 UTC 2019


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)
 {
 




More information about the svn-src-all mailing list