Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
2fdebf6a
Commit
2fdebf6a
authored
11 years ago
by
Hisham Muhammad
Browse files
Options
Download
Email Patches
Plain Diff
Remove useless test.
parent
34b89a97
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
BatteryMeter.c
+1
-2
BatteryMeter.c
with
1 addition
and
2 deletions
+1
-2
BatteryMeter.c
View file @
2fdebf6a
...
...
@@ -217,8 +217,7 @@ static double getProcBatData() {
if
(
totalRemain
==
0
)
return
0
;
double
percent
=
totalFull
>
0
?
((
double
)
totalRemain
*
100
)
/
(
double
)
totalFull
:
0
;
return
percent
;
return
totalRemain
*
100
.
0
/
(
double
)
totalFull
;
}
static
double
getSysBatData
()
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help