aboutsummaryrefslogtreecommitdiff
path: root/lib/base/ringbuffer.h
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-01-12 20:51:12 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-01-12 20:51:12 +0000
commit50d3596b1c5351f07a7d77bd7d0fcab561884806 (patch)
treec09abc096a0f30e2b9fcb7fa72662f7348e2810c /lib/base/ringbuffer.h
parentba02fb4aced5868d047a5bffbd2ed87583daee4d (diff)
downloadenigma2-50d3596b1c5351f07a7d77bd7d0fcab561884806.tar.gz
enigma2-50d3596b1c5351f07a7d77bd7d0fcab561884806.zip
fixes for build with new compiler
Diffstat (limited to 'lib/base/ringbuffer.h')
-rw-r--r--lib/base/ringbuffer.h2
1 files changed, 1 insertions, 1 deletions
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<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;