mirror of https://github.com/xzeldon/htop.git
Fix indentation.
This commit is contained in:
parent
bde3406add
commit
bdadd45a88
42
Meter.c
42
Meter.c
|
@ -142,31 +142,31 @@ Meter* Meter_new(struct ProcessList_* pl, int param, MeterClass* type) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int Meter_humanUnit(char* buffer, unsigned long int value, int size) {
|
int Meter_humanUnit(char* buffer, unsigned long int value, int size) {
|
||||||
const char * prefix = "KMGTPEZY";
|
const char * prefix = "KMGTPEZY";
|
||||||
unsigned long int powi = 1;
|
unsigned long int powi = 1;
|
||||||
unsigned int written, powj = 1, precision = 2;
|
unsigned int written, powj = 1, precision = 2;
|
||||||
|
|
||||||
for(;;) {
|
for(;;) {
|
||||||
if (value / 1024 < powi)
|
if (value / 1024 < powi)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if (prefix[1] == 0)
|
if (prefix[1] == 0)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
powi *= 1024;
|
powi *= 1024;
|
||||||
++prefix;
|
++prefix;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (; precision > 0; precision--) {
|
for (; precision > 0; precision--) {
|
||||||
powj *= 10;
|
powj *= 10;
|
||||||
if (value / powi < powj)
|
if (value / powi < powj)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
written = snprintf(buffer, size, "%.*f%c",
|
written = snprintf(buffer, size, "%.*f%c",
|
||||||
precision, (double) value / powi, *prefix);
|
precision, (double) value / powi, *prefix);
|
||||||
|
|
||||||
return written;
|
return written;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Meter_delete(Object* cast) {
|
void Meter_delete(Object* cast) {
|
||||||
|
@ -463,9 +463,9 @@ static void LEDMeterMode_draw(Meter* this, int x, int y, int w) {
|
||||||
|
|
||||||
int yText =
|
int yText =
|
||||||
#ifdef HAVE_LIBNCURSESW
|
#ifdef HAVE_LIBNCURSESW
|
||||||
CRT_utf8 ? y+1 :
|
CRT_utf8 ? y+1 :
|
||||||
#endif
|
#endif
|
||||||
y+2;
|
y+2;
|
||||||
attrset(CRT_colors[LED_COLOR]);
|
attrset(CRT_colors[LED_COLOR]);
|
||||||
mvaddstr(yText, x, this->caption);
|
mvaddstr(yText, x, this->caption);
|
||||||
int xx = x + strlen(this->caption);
|
int xx = x + strlen(this->caption);
|
||||||
|
|
Loading…
Reference in New Issue