svn commit: r365600 - head/contrib/netbsd-tests/lib/libexecinfo

Kyle Evans kevans at FreeBSD.org
Thu Sep 10 17:48:28 UTC 2020


Author: kevans
Date: Thu Sep 10 17:48:27 2020
New Revision: 365600
URL: https://svnweb.freebsd.org/changeset/base/365600

Log:
  MFV r365599: import fix for a libexecinfo warning at higher WARNS
  
  v1.17 of this file included a fix that I just submitted upstream to fix a
  warning about prevent_inline with external linkage not having been
  previously declared.
  
  MFC after:	1 week

Modified:
  head/contrib/netbsd-tests/lib/libexecinfo/t_backtrace.c
Directory Properties:
  head/contrib/netbsd-tests/   (props changed)

Modified: head/contrib/netbsd-tests/lib/libexecinfo/t_backtrace.c
==============================================================================
--- head/contrib/netbsd-tests/lib/libexecinfo/t_backtrace.c	Thu Sep 10 17:46:40 2020	(r365599)
+++ head/contrib/netbsd-tests/lib/libexecinfo/t_backtrace.c	Thu Sep 10 17:48:27 2020	(r365600)
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_backtrace.c,v 1.16 2014/11/04 00:20:19 justin Exp $	*/
+/*	$NetBSD: t_backtrace.c,v 1.17 2020/09/09 20:04:10 christos Exp $	*/
 
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_backtrace.c,v 1.16 2014/11/04 00:20:19 justin Exp $");
+__RCSID("$NetBSD: t_backtrace.c,v 1.17 2020/09/09 20:04:10 christos Exp $");
 
 #include <atf-c.h>
 #include <string.h>
@@ -47,7 +47,7 @@ void myfunc2(size_t ncalls);
 void myfunc1(size_t origcalls, volatile size_t ncalls);
 void myfunc(size_t ncalls);
 
-volatile int prevent_inline;
+static volatile int prevent_inline;
 
 void
 myfunc3(size_t ncalls)


More information about the svn-src-all mailing list