svn commit: r288366 - head/sys/sys

Andriy Gapon avg at FreeBSD.org
Tue Sep 29 12:15:00 UTC 2015


Author: avg
Date: Tue Sep 29 12:14:59 2015
New Revision: 288366
URL: https://svnweb.freebsd.org/changeset/base/288366

Log:
  sdt.h: no need for argtype_list_head
  
  MFC after:	12 days

Modified:
  head/sys/sys/sdt.h

Modified: head/sys/sys/sdt.h
==============================================================================
--- head/sys/sys/sdt.h	Tue Sep 29 12:14:22 2015	(r288365)
+++ head/sys/sys/sdt.h	Tue Sep 29 12:14:59 2015	(r288366)
@@ -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-all mailing list