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
814ce89b
Commit
814ce89b
authored
11 years ago
by
Hisham Muhammad
Browse files
Options
Download
Email Patches
Plain Diff
Oops, fix use of memset.
parent
659251c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
BatteryMeter.c
+1
-1
BatteryMeter.c
with
1 addition
and
1 deletion
+1
-1
BatteryMeter.c
View file @
814ce89b
...
...
@@ -59,7 +59,7 @@ static unsigned long int parseBatInfo(const char *fileName, const unsigned short
#define MAX_BATTERIES 64
char
*
batteries
[
MAX_BATTERIES
];
unsigned
int
nBatteries
=
0
;
memset
(
batteries
,
MAX_BATTERIES
,
sizeof
(
char
*
));
memset
(
batteries
,
0
,
MAX_BATTERIES
*
sizeof
(
char
*
));
struct
dirent
result
;
struct
dirent
*
dirEntry
;
...
...
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