summaryrefslogtreecommitdiffstats
path: root/Meter.c
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2011-10-25 00:05:46 +0000
committerHisham Muhammad <hisham@gobolinux.org>2011-10-25 00:05:46 +0000
commitd1b1cbc75715eb4f40a444d3a1d2741b3617b1f0 (patch)
treed7ba15bd1300fff66757d0178ed91b156312bf7c /Meter.c
parent75080ce79d2fb8ae895659326dacf688c8cb7ce9 (diff)
cleanups and fixes, thanks to cppcheck and gcc -Wextra
Diffstat (limited to 'Meter.c')
-rw-r--r--Meter.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/Meter.c b/Meter.c
index 57862364..8c3cc50f 100644
--- a/Meter.c
+++ b/Meter.c
@@ -5,7 +5,6 @@ Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
-#define _GNU_SOURCE
#include "RichString.h"
#include "Meter.h"
#include "Object.h"
@@ -275,11 +274,10 @@ static void BarMeterMode_draw(Meter* this, int x, int y, int w) {
for (int i = 0; i < w; i++)
bar[i] = ' ';
- const size_t barOffset = w - MIN(strlen(buffer), w);
+ const size_t barOffset = w - MIN((int)strlen(buffer), w);
snprintf(bar + barOffset, w - barOffset + 1, "%s", buffer);
// First draw in the bar[] buffer...
- double total = 0.0;
int offset = 0;
for (int i = 0; i < type->items; i++) {
double value = this->values[i];
@@ -302,7 +300,6 @@ static void BarMeterMode_draw(Meter* this, int x, int y, int w) {
}
}
offset = nextOffset;
- total += this->values[i];
}
// ...then print the buffer.

© 2014-2024 Faster IT GmbH | imprint | privacy policy