Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
285572fd
Commit
285572fd
authored
May 08, 2009
by
Austin English
Committed by
Alexandre Julliard
May 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Sign compare fixes.
parent
8b7269e7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
emf.c
tools/winedump/emf.c
+2
-2
lnk.c
tools/winedump/lnk.c
+1
-1
No files found.
tools/winedump/emf.c
View file @
285572fd
...
...
@@ -36,11 +36,11 @@
#include "winbase.h"
#include "wingdi.h"
static
const
char
*
debugstr_wn
(
const
WCHAR
*
wstr
,
int
n
)
static
const
char
*
debugstr_wn
(
const
WCHAR
*
wstr
,
unsigned
int
n
)
{
static
char
buf
[
80
];
char
*
p
;
int
i
;
unsigned
int
i
;
if
(
!
wstr
)
return
"(null)"
;
...
...
tools/winedump/lnk.c
View file @
285572fd
...
...
@@ -375,7 +375,7 @@ static int dump_raw_block(const DATABLOCK_HEADER* bhdr)
data_size
=
bhdr
->
cbSize
-
sizeof
(
*
bhdr
);
if
(
data_size
>
0
)
{
unsigned
int
i
;
int
i
;
const
unsigned
char
*
data
;
printf
(
"data = "
);
...
...
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