Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2d9046e2
Commit
2d9046e2
authored
Dec 07, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Dec 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Avoid returning void from a void function.
parent
53e89174
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
pdb.c
tools/winedump/pdb.c
+8
-2
No files found.
tools/winedump/pdb.c
View file @
2d9046e2
...
...
@@ -671,9 +671,15 @@ void pdb_dump(void)
/* init_types(); */
head
=
PRD
(
0
,
sizeof
(
pdb2
)
-
1
);
if
(
head
&&
!
memcmp
(
head
,
pdb2
,
sizeof
(
pdb2
)
-
1
))
return
pdb_jg_dump
();
{
pdb_jg_dump
();
return
;
}
head
=
PRD
(
0
,
sizeof
(
pdb7
)
-
1
);
if
(
head
&&
!
memcmp
(
head
,
pdb7
,
sizeof
(
pdb7
)
-
1
))
return
pdb_ds_dump
();
{
pdb_ds_dump
();
return
;
}
printf
(
"Unrecognized header %s
\n
"
,
head
);
}
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