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
344eee20
Commit
344eee20
authored
Oct 16, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Oct 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Use debugstr_fourcc instead of debugstr_an.
parent
43598133
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
freetype.c
dlls/win32u/freetype.c
+3
-3
No files found.
dlls/win32u/freetype.c
View file @
344eee20
...
...
@@ -2058,7 +2058,7 @@ static UINT freetype_get_font_data( struct gdi_font *font, UINT table, UINT offs
err
=
pFT_Load_Sfnt_Table
(
ft_face
,
RtlUlongByteSwap
(
table
),
offset
,
buf
,
&
len
);
if
(
err
)
{
TRACE
(
"Can't find table %s
\n
"
,
debugstr_
an
((
char
*
)
&
table
,
4
));
TRACE
(
"Can't find table %s
\n
"
,
debugstr_
fourcc
(
table
));
return
GDI_ERROR
;
}
return
len
;
...
...
@@ -4010,7 +4010,7 @@ static UINT freetype_get_unicode_ranges( struct gdi_font *font, GLYPHSET *gs )
else
{
DWORD
encoding
=
RtlUlongByteSwap
(
ft_face
->
charmap
->
encoding
);
FIXME
(
"encoding %s not supported
\n
"
,
debugstr_
an
((
char
*
)
&
encoding
,
4
));
FIXME
(
"encoding %s not supported
\n
"
,
debugstr_
fourcc
(
encoding
));
}
return
num_ranges
;
...
...
@@ -4175,7 +4175,7 @@ static UINT freetype_get_kerning_pairs( struct gdi_font *font, KERNINGPAIR **pai
DWORD
encoding
=
RtlUlongByteSwap
(
ft_face
->
charmap
->
encoding
);
ULONG
n
;
FIXME
(
"encoding %s not supported
\n
"
,
debugstr_
an
((
char
*
)
&
encoding
,
4
));
FIXME
(
"encoding %s not supported
\n
"
,
debugstr_
fourcc
(
encoding
));
for
(
n
=
0
;
n
<=
65535
;
n
++
)
glyph_to_char
[
n
]
=
(
USHORT
)
n
;
}
...
...
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