svn commit: r289795 - stable/10/sys/sys

Andriy Gapon avg at FreeBSD.org
Fri Oct 23 07:37:46 UTC 2015


Author: avg
Date: Fri Oct 23 07:37:44 2015
New Revision: 289795
URL: https://svnweb.freebsd.org/changeset/base/289795

Log:
  MFC r288366: sdt.h: no need for argtype_list_head

Modified:
  stable/10/sys/sys/sdt.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/sys/sdt.h
==============================================================================
--- stable/10/sys/sys/sdt.h	Fri Oct 23 07:37:27 2015	(r289794)
+++ stable/10/sys/sys/sdt.h	Fri Oct 23 07:37:44 2015	(r289795)
@@ -398,7 +398,7 @@ struct sdt_probe {
 	struct sdt_provider *prov;	/* Ptr to the provider structure. */
 	TAILQ_ENTRY(sdt_probe)
 			probe_entry;	/* SDT probe list entry. */
-	TAILQ_HEAD(argtype_list_head, sdt_argtype) argtype_list;
+	TAILQ_HEAD(, sdt_argtype) argtype_list;
 	const char	*mod;
 	const char	*func;
 	const char	*name;


More information about the svn-src-stable-10 mailing list