summaryrefslogtreecommitdiffstats
path: root/runtime/stream.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-04-19 18:47:06 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2010-04-19 18:47:06 +0200
commit527edddb4646c24fa9a587601cd90d7a57a1fcf0 (patch)
treeff881cc053915d617f1ec6465b8d8c01897c6563 /runtime/stream.c
parentd3eb89a5fe1dbcda028c0ab5e6753578716539d7 (diff)
parent84084ea2a178f782184d75db10f252efdc62fb5f (diff)
downloadrsyslog-527edddb4646c24fa9a587601cd90d7a57a1fcf0.tar.gz
rsyslog-527edddb4646c24fa9a587601cd90d7a57a1fcf0.tar.xz
rsyslog-527edddb4646c24fa9a587601cd90d7a57a1fcf0.zip
Merge branch 'v4-devel'
Conflicts: runtime/msg.h runtime/rsyslog.h runtime/stream.c
Diffstat (limited to 'runtime/stream.c')
-rw-r--r--runtime/stream.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/stream.c b/runtime/stream.c
index e3f020ae..e0b97f9f 100644
--- a/runtime/stream.c
+++ b/runtime/stream.c
@@ -215,7 +215,8 @@ doPhysOpen(strm_t *pThis)
}
pThis->fd = open((char*)pThis->pszCurrFName, iFlags, pThis->tOpenMode);
- DBGPRINTF("file '%s' opened as #%d with mode %d\n", pThis->pszCurrFName, pThis->fd, (int) pThis->tOpenMode);
+ DBGPRINTF("file '%s' opened as #%d with mode %d\n", pThis->pszCurrFName,
+ pThis->fd, (int) pThis->tOpenMode);
if(pThis->fd == -1) {
char errStr[1024];
int err = errno;