Skip to content
GitLab
Menu
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
Apr 24, 2014
by
Hisham Muhammad
Browse files
Oops, fix use of memset.
parent
659251c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
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
;
...
...
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