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
29f54417
Commit
29f54417
authored
Nov 14, 1998
by
Huw D M Davies
Committed by
Alexandre Julliard
Nov 14, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed some of the message classes.
parent
f64b70e5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
local.c
memory/local.c
+4
-4
No files found.
memory/local.c
View file @
29f54417
...
...
@@ -787,7 +787,7 @@ static HLOCAL16 LOCAL_FindFreeBlock( HANDLE16 ds, WORD size )
if
(
arena
==
pArena
->
free_next
)
break
;
if
(
pArena
->
size
>=
size
)
return
arena
;
}
ERR
(
local
,
"not enough space
\n
"
);
TRACE
(
local
,
"not enough space
\n
"
);
LOCAL_PrintHeap
(
ds
);
return
0
;
}
...
...
@@ -830,13 +830,13 @@ static HLOCAL16 LOCAL_GetBlock( HANDLE16 ds, WORD size, WORD flags )
}
if
(
arena
==
0
)
{
if
(
ds
==
GDI_HeapSel
)
{
WARN
(
local
,
"not enough space in GDI local heap "
ERR
(
local
,
"not enough space in GDI local heap "
"(%04x) for %d bytes
\n
"
,
ds
,
size
);
}
else
if
(
ds
==
USER_HeapSel
)
{
WARN
(
local
,
"not enough space in USER local heap "
ERR
(
local
,
"not enough space in USER local heap "
"(%04x) for %d bytes
\n
"
,
ds
,
size
);
}
else
{
WARN
(
local
,
"not enough space in local heap "
ERR
(
local
,
"not enough space in local heap "
"%04x for %d bytes
\n
"
,
ds
,
size
);
}
return
0
;
...
...
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