X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/d63d2c3c6cbbd574dda4f8b00ebe6c661735edd5..41ede5ef8052385661577e28e2f3c96c9377c4ee:/lib/base/ringbuffer.h diff --git a/lib/base/ringbuffer.h b/lib/base/ringbuffer.h index f2cd9058..e9fc4d68 100644 --- a/lib/base/ringbuffer.h +++ b/lib/base/ringbuffer.h @@ -91,7 +91,7 @@ void queueRingBuffer::enqueue( const T &val ) // first check for potential overflow if( lastFilled->nextLink == lastFree ) { - eDebug("increase size %d", count); +// eDebug("increase size %d", count); link * newLink = new link( val ); newLink->prevLink = lastFilled; newLink->nextLink = lastFilled->nextLink;