diff --git a/src/ppc/uarch.c b/src/ppc/uarch.c index 32354e1..abaacf0 100644 --- a/src/ppc/uarch.c +++ b/src/ppc/uarch.c @@ -280,9 +280,6 @@ char* get_str_process(struct cpuInfo* cpu) { if(process == UNK) { snprintf(str, strlen(STRING_UNKNOWN)+1, STRING_UNKNOWN); } - else if(process > 100) { - sprintf(str, "%.2fum", (double)process/100); - } else if(process > 0){ sprintf(str, "%dnm", process); } diff --git a/src/x86/uarch.c b/src/x86/uarch.c index 3c8644f..3d19640 100644 --- a/src/x86/uarch.c +++ b/src/x86/uarch.c @@ -498,9 +498,6 @@ char* get_str_process(struct cpuInfo* cpu) { if(process == UNK) { snprintf(str, strlen(STRING_UNKNOWN)+1, STRING_UNKNOWN); } - else if(process > 100) { - sprintf(str, "%.2fum", (double)process/100); - } else if(process > 0){ sprintf(str, "%dnm", process); }