Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
267f67d3
Commit
267f67d3
authored
Jul 30, 2002
by
Sam Ravnborg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] kbuild: fix warnings in fixdep when compiled with -pedantic
parent
1fe581d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
scripts/fixdep.c
scripts/fixdep.c
+2
-2
No files found.
scripts/fixdep.c
View file @
267f67d3
...
...
@@ -213,7 +213,7 @@ void use_config(char *m, int slen)
void
parse_config_file
(
char
*
map
,
size_t
len
)
{
int
*
end
=
(
int
*
)
(
map
+
len
);
/
/ start at +1, so that p can never be < map
/
* start at +1, so that p can never be < map */
int
*
m
=
(
int
*
)
map
+
1
;
char
*
p
,
*
q
;
...
...
@@ -283,7 +283,7 @@ void do_config_file(char *filename)
void
parse_dep_file
(
void
*
map
,
size_t
len
)
{
char
*
m
=
map
;
char
*
end
=
m
ap
+
len
;
char
*
end
=
m
+
len
;
char
*
p
;
char
s
[
PATH_MAX
];
...
...
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