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
ea7bcc6c
Commit
ea7bcc6c
authored
Jul 18, 2010
by
Andrew Nguyen
Committed by
Alexandre Julliard
Jul 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
krnl386.exe: Use the correct format specifier for size traces.
parent
4662e121
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
int31.c
dlls/krnl386.exe16/int31.c
+4
-4
No files found.
dlls/krnl386.exe16/int31.c
View file @
ea7bcc6c
...
...
@@ -223,7 +223,7 @@ static LPVOID DPMI_xalloc( DWORD len )
if
(
!
xflag
&&
(
lastvalloced
<
oldlastv
))
{
/* wrapped */
FIXME
(
"failed to allocate linearly growing memory (%
d
bytes), "
FIXME
(
"failed to allocate linearly growing memory (%
u
bytes), "
"using non-linear growing...
\n
"
,
len
);
xflag
++
;
}
...
...
@@ -235,7 +235,7 @@ static LPVOID DPMI_xalloc( DWORD len )
xflag
++
;
if
((
xflag
==
2
)
&&
(
lastvalloced
<
oldlastv
))
{
FIXME
(
"failed to allocate any memory of %
d
bytes!
\n
"
,
len
);
FIXME
(
"failed to allocate any memory of %
u
bytes!
\n
"
,
len
);
return
NULL
;
}
}
...
...
@@ -1343,7 +1343,7 @@ void WINAPI DOSVM_Int31Handler( CONTEXT86 *context )
DWORD
size
=
MAKELONG
(
CX_reg
(
context
),
BX_reg
(
context
)
);
BYTE
*
ptr
;
TRACE
(
"allocate memory block (%
d
bytes)
\n
"
,
size
);
TRACE
(
"allocate memory block (%
u
bytes)
\n
"
,
size
);
ptr
=
DPMI_xalloc
(
size
);
if
(
!
ptr
)
...
...
@@ -1375,7 +1375,7 @@ void WINAPI DOSVM_Int31Handler( CONTEXT86 *context )
DWORD
handle
=
MAKELONG
(
DI_reg
(
context
),
SI_reg
(
context
)
);
BYTE
*
ptr
;
TRACE
(
"resize memory block (0x%08x, %
d
bytes)
\n
"
,
handle
,
size
);
TRACE
(
"resize memory block (0x%08x, %
u
bytes)
\n
"
,
handle
,
size
);
ptr
=
DPMI_xrealloc
(
(
void
*
)
handle
,
size
);
if
(
!
ptr
)
...
...
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