X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/d63d2c3c6cbbd574dda4f8b00ebe6c661735edd5..5c517e1d40eac9531b1efffee24c70d297867112:/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;