From b069659ddf41b22ad05099e2580f8f7e8fc7bdbc Mon Sep 17 00:00:00 2001 From: avg Date: Tue, 29 Sep 2015 12:14:59 +0000 Subject: [PATCH] sdt.h: no need for argtype_list_head MFC after: 12 days --- sys/sys/sdt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/sdt.h b/sys/sys/sdt.h index ca820f68bce1..5dd0b67af609 100644 --- a/sys/sys/sdt.h +++ b/sys/sys/sdt.h @@ -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;