summaryrefslogtreecommitdiffstats
path: root/ommysql.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-07-31 08:15:40 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-07-31 08:15:40 +0000
commit9c20d0b4b4d3b85128d1754af3324866b135a412 (patch)
tree2a851c42a1147844efe56691e9d33116b9c856f3 /ommysql.c
parente123f620d3705263777c279ba319acf83eaf928d (diff)
downloadrsyslog-9c20d0b4b4d3b85128d1754af3324866b135a412.tar.gz
rsyslog-9c20d0b4b4d3b85128d1754af3324866b135a412.tar.xz
rsyslog-9c20d0b4b4d3b85128d1754af3324866b135a412.zip
added macro to consistently define iRet
Diffstat (limited to 'ommysql.c')
-rw-r--r--ommysql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ommysql.c b/ommysql.c
index ee8caab7..9171ccd9 100644
--- a/ommysql.c
+++ b/ommysql.c
@@ -235,7 +235,7 @@ rsRetVal checkDBErrorState(instanceData *pData)
static rsRetVal initMySQL(instanceData *pData)
{
int iCounter = 0;
- rsRetVal iRet = RS_RET_OK;
+ DEFiRet;
assert(pData != NULL);
if((iRet = checkDBErrorState(pData)) != RS_RET_OK)
@@ -289,7 +289,7 @@ static rsRetVal reInitMySQL(instanceData *pData)
rsRetVal writeMySQL(uchar *psz, instanceData *pData)
{
int iCounter=0;
- rsRetVal iRet = RS_RET_OK;
+ DEFiRet;
assert(pData != NULL);
if((iRet = checkDBErrorState(pData)) != RS_RET_OK)