diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-01-12 20:51:12 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-01-12 20:51:12 +0000 |
| commit | 50d3596b1c5351f07a7d77bd7d0fcab561884806 (patch) | |
| tree | c09abc096a0f30e2b9fcb7fa72662f7348e2810c /lib/base/ringbuffer.h | |
| parent | ba02fb4aced5868d047a5bffbd2ed87583daee4d (diff) | |
| download | enigma2-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.h | 2 |
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; |
