diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-06-23 11:29:47 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-06-23 11:29:47 +0200 |
commit | b711a34a075cf3979f48937f8af8b05030644e82 (patch) | |
tree | b2f53af932db04bc0fad95d771a0a70e30ef0125 /action.c | |
parent | 7b1a570d54ac4c82325aeeee70d7a8871ecd688a (diff) | |
download | rsyslog-b711a34a075cf3979f48937f8af8b05030644e82.tar.gz rsyslog-b711a34a075cf3979f48937f8af8b05030644e82.tar.bz2 rsyslog-b711a34a075cf3979f48937f8af8b05030644e82.zip |
disabled compile warnings caused by third-party libraries
Diffstat (limited to 'action.c')
-rw-r--r-- | action.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -369,6 +369,7 @@ rsRetVal actionDbgPrint(action_t *pThis) /* call the DoAction output plugin entry point * rgerhards, 2008-01-28 */ +#pragma GCC diagnostic ignored "-Wempty-body" rsRetVal actionCallDoAction(action_t *pAction, msg_t *pMsg) { @@ -453,6 +454,7 @@ finalize_it: RETiRet; } +#pragma GCC diagnostic warning "-Wempty-body" /* set the action message queue mode * TODO: probably move this into queue object, merge with MainMsgQueue! @@ -588,6 +590,7 @@ finalize_it: /* call the configured action. Does all necessary housekeeping. * rgerhards, 2007-08-01 */ +#pragma GCC diagnostic ignored "-Wempty-body" rsRetVal actionCallAction(action_t *pAction, msg_t *pMsg) { @@ -672,6 +675,7 @@ finalize_it: pthread_setcancelstate(iCancelStateSave, NULL); RETiRet; } +#pragma GCC diagnostic warning "-Wempty-body" /* add our cfsysline handlers |