update python
[enigma2.git] / lib / base / ringbuffer.h
index f2cd9058805ed340985fca482686441db5af55dc..e9fc4d68022cf306f2bc66ca77a21c9ea2e1ee83 100644 (file)
@@ -91,7 +91,7 @@ void queueRingBuffer<T>::enqueue( const T &val )
        // first check for potential overflow
        if( lastFilled->nextLink == lastFree )
        {
-               eDebug("increase size %d", count);
+//             eDebug("increase size %d", count);
                link<T> * newLink = new link<T>( val );
                newLink->prevLink = lastFilled;
                newLink->nextLink = lastFilled->nextLink;