diff options
author | gnn <gnn@FreeBSD.org> | 2016-12-30 01:24:08 +0000 |
---|---|---|
committer | gnn <gnn@FreeBSD.org> | 2016-12-30 01:24:08 +0000 |
commit | aa1d064f30926ed185b2fb41a7c41bacf56d4427 (patch) | |
tree | c9f352064c63ca423ed7afb33584f8c027b2832a /sys/cddl | |
parent | a0a976c9d473cd6ae67805c90a2dfaf9f48289fe (diff) | |
download | FreeBSD-src-aa1d064f30926ed185b2fb41a7c41bacf56d4427.zip FreeBSD-src-aa1d064f30926ed185b2fb41a7c41bacf56d4427.tar.gz |
MFC: 310175
Remove extra DOF_SEC_XLIMPORT from the DOF_SEC_ISLOADABLE macro
Sponsored by: DARPA, AFRL
Diffstat (limited to 'sys/cddl')
-rw-r--r-- | sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h b/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h index cd5f4d0..2db9bcf 100644 --- a/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h +++ b/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h @@ -739,8 +739,8 @@ typedef struct dof_sec { ((x) == DOF_SECT_PRARGS) || ((x) == DOF_SECT_PROFFS) || \ ((x) == DOF_SECT_INTTAB) || ((x) == DOF_SECT_XLTAB) || \ ((x) == DOF_SECT_XLMEMBERS) || ((x) == DOF_SECT_XLIMPORT) || \ - ((x) == DOF_SECT_XLIMPORT) || ((x) == DOF_SECT_XLEXPORT) || \ - ((x) == DOF_SECT_PREXPORT) || ((x) == DOF_SECT_PRENOFFS)) + ((x) == DOF_SECT_XLEXPORT) || ((x) == DOF_SECT_PREXPORT) || \ + ((x) == DOF_SECT_PRENOFFS)) typedef struct dof_ecbdesc { dof_secidx_t dofe_probes; /* link to DOF_SECT_PROBEDESC */ |