diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-18 11:40:15 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-18 11:40:15 +0200 |
commit | 1daf8d492f932739b6fcde732812116c7666b2bc (patch) | |
tree | 24dd3b699f1e4277919a64f4d9f513e1821b7b01 /runtime/obj-types.h | |
parent | ea4a3a3cd95faf9328def84e3e253d6c1a4375f7 (diff) | |
download | rsyslog-1daf8d492f932739b6fcde732812116c7666b2bc.tar.gz rsyslog-1daf8d492f932739b6fcde732812116c7666b2bc.tar.bz2 rsyslog-1daf8d492f932739b6fcde732812116c7666b2bc.zip |
converted netstrm into generic netstrm and the nsd_pctp driver
Diffstat (limited to 'runtime/obj-types.h')
-rw-r--r-- | runtime/obj-types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/obj-types.h b/runtime/obj-types.h index e245b633..e3df7239 100644 --- a/runtime/obj-types.h +++ b/runtime/obj-types.h @@ -81,13 +81,13 @@ struct objInfo_s { }; -typedef struct obj { /* the dummy struct that each derived class can be casted to */ +struct obj_s { /* the dummy struct that each derived class can be casted to */ objInfo_t *pObjInfo; #ifndef NDEBUG /* this means if debug... */ unsigned int iObjCooCKiE; /* must always be 0xBADEFEE for a valid object */ #endif uchar *pszName; /* the name of *this* specific object instance */ -} obj_t; +}; /* macros which must be gloablly-visible (because they are used during definition of |