diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-17 13:34:23 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-17 13:34:23 +0200 |
commit | 62090c416cd0b7f4b67a68a81b5c37e2d27cf84e (patch) | |
tree | c0412d048e02edeb05e553d76fd3fe0e91c8b73a /runtime/queue.c | |
parent | cd2b917feff1f292085cef15574bb5974a11d4a7 (diff) | |
download | rsyslog-62090c416cd0b7f4b67a68a81b5c37e2d27cf84e.tar.gz rsyslog-62090c416cd0b7f4b67a68a81b5c37e2d27cf84e.tar.bz2 rsyslog-62090c416cd0b7f4b67a68a81b5c37e2d27cf84e.zip |
regression fix: %d used for long long types in debug output
regression from recent DA queue bug fix set of patches; not present
in any released code.
Diffstat (limited to 'runtime/queue.c')
-rw-r--r-- | runtime/queue.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/queue.c b/runtime/queue.c index 08ef475f..abe2be06 100644 --- a/runtime/queue.c +++ b/runtime/queue.c @@ -2568,7 +2568,9 @@ doEnqSingleObj(qqueue_t *pThis, flowControl_t flowCtlType, msg_t *pMsg) && pThis->tVars.disk.sizeOnDisk > pThis->sizeOnDiskMax)) { STATSCOUNTER_INC(pThis->ctrFull, pThis->mutCtrFull); if(pThis->toEnq == 0 || pThis->bEnqOnly) { - DBGOPRINT((obj_t*) pThis, "doEnqSingleObject: queue FULL - configured for immediate discarding QueueSize=%d MaxQueueSize=%d sizeOnDisk=%d sizeOnDiskMax=%d\n", pThis->iQueueSize, pThis->iMaxQueueSize, pThis->tVars.disk.sizeOnDisk, pThis->sizeOnDiskMax); + DBGOPRINT((obj_t*) pThis, "doEnqSingleObject: queue FULL - configured for immediate discarding QueueSize=%d " + "MaxQueueSize=%d sizeOnDisk=%lld sizeOnDiskMax=%lld\n", pThis->iQueueSize, pThis->iMaxQueueSize, + pThis->tVars.disk.sizeOnDisk, pThis->sizeOnDiskMax); STATSCOUNTER_INC(pThis->ctrFDscrd, pThis->mutCtrFDscrd); msgDestruct(&pMsg); ABORT_FINALIZE(RS_RET_QUEUE_FULL); |