diff options
Diffstat (limited to 'ringbuffer.c')
-rw-r--r-- | ringbuffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ringbuffer.c b/ringbuffer.c index 25a01596..fd8123ec 100644 --- a/ringbuffer.c +++ b/ringbuffer.c @@ -7,7 +7,7 @@ * Parts of this file were inspired by the 'ringbuffy.c' from the * LinuxDVB driver (see linuxtv.org). * - * $Id: ringbuffer.c 2.1 2009/03/01 11:20:34 kls Exp $ + * $Id: ringbuffer.c 2.2 2009/05/17 10:05:17 kls Exp $ */ #include "ringbuffer.h" @@ -43,7 +43,7 @@ void cRingBuffer::UpdatePercentage(int Fill) { if (Fill > maxFill) maxFill = Fill; - int percent = Fill * 100 / (Size() - 1) / PERCENTAGEDELTA * PERCENTAGEDELTA; + int percent = Fill * 100 / (Size() - 1) / PERCENTAGEDELTA * PERCENTAGEDELTA; // clamp down to nearest quantum if (percent != lastPercent) { if (percent >= PERCENTAGETHRESHOLD && percent > lastPercent || percent < PERCENTAGETHRESHOLD && lastPercent >= PERCENTAGETHRESHOLD) { dsyslog("buffer usage: %d%% (tid=%d)", percent, getThreadTid); |