mirror of
https://github.com/smxi/inxi.git
synced 2024-11-17 00:31:19 +00:00
small logic cleanup
This commit is contained in:
parent
b1eb472b55
commit
351d4932e2
8
inxi
8
inxi
|
@ -3974,13 +3974,13 @@ get_cpu_data()
|
||||||
# this is / was used in inxi short output only, but when it is N/A, need to use the previous array
|
# this is / was used in inxi short output only, but when it is N/A, need to use the previous array
|
||||||
# value, from above, the actual speed that is, for short output, key 0.
|
# value, from above, the actual speed that is, for short output, key 0.
|
||||||
if (speed == 0) {
|
if (speed == 0) {
|
||||||
print "N/A"
|
print "N/A,0,0"
|
||||||
exit
|
exit
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
sub(/\.0[0]+$/,"",max)
|
sub(/\.[0-9]+$/,"",max)
|
||||||
sub(/\.0[0]+$/,"",speed)
|
sub(/\.[0-9]+$/,"",speed)
|
||||||
sub(/\.0[0]+$/,"",min)
|
sub(/\.[0-9]+$/,"",min)
|
||||||
print speed "," min "," max
|
print speed "," min "," max
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue