diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-04-29 17:07:01 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-04-29 17:07:01 +0200 |
commit | 2debe89434872b68f36cc4282d8a02039847c605 (patch) | |
tree | 93a15339a5e760bd266e34af10ae01d4d2f9f9e8 /action.c | |
parent | 10bab38993ae6853d7e23c6f6bd44eb0ed69e001 (diff) | |
download | rsyslog-2debe89434872b68f36cc4282d8a02039847c605.tar.gz rsyslog-2debe89434872b68f36cc4282d8a02039847c605.tar.xz rsyslog-2debe89434872b68f36cc4282d8a02039847c605.zip |
minor cleanup
Diffstat (limited to 'action.c')
-rw-r--r-- | action.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -500,7 +500,8 @@ actionCallDoAction(action_t *pAction, msg_t *pMsg) } } - } while(iRet == RS_RET_SUSPENDED && (pAction->iResumeRetryCount == -1 || iRetries < pAction->iResumeRetryCount)); /* do...while! */ + } while( iRet == RS_RET_SUSPENDED + && (pAction->iResumeRetryCount == -1 || iRetries < pAction->iResumeRetryCount)); /* do...while! */ if(iRet == RS_RET_DISABLE_ACTION) { dbgprintf("Action requested to be disabled, done that.\n"); |