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
ae48a519
Commit
ae48a519
authored
Oct 02, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineconsole: Win64 printf format warning fixes.
parent
7460b042
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
Makefile.in
programs/wineconsole/Makefile.in
+1
-1
registry.c
programs/wineconsole/registry.c
+1
-1
user.c
programs/wineconsole/user.c
+5
-5
No files found.
programs/wineconsole/Makefile.in
View file @
ae48a519
EXTRADEFS
=
-DUNICODE
-DWINE_NO_LONG_AS_INT
EXTRADEFS
=
-DUNICODE
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
...
...
programs/wineconsole/registry.c
View file @
ae48a519
...
...
@@ -48,7 +48,7 @@ static const WCHAR wszWindowSize[] = {'W','i','n','d','o','w','S','i','z'
void
WINECON_DumpConfig
(
const
char
*
pfx
,
const
struct
config_data
*
cfg
)
{
WINE_TRACE
(
"%s cell=(%u,%u) cursor=(%d,%d) attr=%02
lx font=%s/%lu hist=%lu/%d flags=%c%c msk=%08l
x sb=(%u,%u) win=(%u,%u)x(%u,%u) edit=%u registry=%s
\n
"
,
WINE_TRACE
(
"%s cell=(%u,%u) cursor=(%d,%d) attr=%02
x font=%s/%u hist=%u/%d flags=%c%c msk=%08
x sb=(%u,%u) win=(%u,%u)x(%u,%u) edit=%u registry=%s
\n
"
,
pfx
,
cfg
->
cell_width
,
cfg
->
cell_height
,
cfg
->
cursor_size
,
cfg
->
cursor_visible
,
cfg
->
def_attr
,
wine_dbgstr_w
(
cfg
->
face_name
),
cfg
->
font_weight
,
cfg
->
history_size
,
cfg
->
history_nodup
?
1
:
2
,
cfg
->
quick_edit
?
'Q'
:
'q'
,
cfg
->
exit_on_die
?
'X'
:
'x'
,
...
...
programs/wineconsole/user.c
View file @
ae48a519
...
...
@@ -277,8 +277,8 @@ static void WCUSER_SetTitle(const struct inner_data* data)
void
WCUSER_DumpLogFont
(
const
char
*
pfx
,
const
LOGFONT
*
lf
,
DWORD
ft
)
{
WINE_TRACE_
(
wc_font
)(
"%s %s%s%s%s
\n
"
"
\t
lf.lfHeight=%
ld lf.lfWidth=%ld lf.lfEscapement=%ld lf.lfOrientation=%l
d
\n
"
"
\t
lf.lfWeight=%
l
d lf.lfItalic=%u lf.lfUnderline=%u lf.lfStrikeOut=%u
\n
"
"
\t
lf.lfHeight=%
d lf.lfWidth=%d lf.lfEscapement=%d lf.lfOrientation=%
d
\n
"
"
\t
lf.lfWeight=%d lf.lfItalic=%u lf.lfUnderline=%u lf.lfStrikeOut=%u
\n
"
"
\t
lf.lfCharSet=%u lf.lfOutPrecision=%u lf.lfClipPrecision=%u lf.lfQuality=%u
\n
"
"
\t
lf->lfPitchAndFamily=%u lf.lfFaceName=%s
\n
"
,
pfx
,
...
...
@@ -295,9 +295,9 @@ void WCUSER_DumpLogFont(const char* pfx, const LOGFONT* lf, DWORD ft)
void
WCUSER_DumpTextMetric
(
const
TEXTMETRIC
*
tm
,
DWORD
ft
)
{
WINE_TRACE_
(
wc_font
)(
"%s%s%s%s
\n
"
"
\t
tmHeight=%
ld tmAscent=%ld tmDescent=%ld tmInternalLeading=%ld tmExternalLeading=%l
d
\n
"
"
\t
tmAveCharWidth=%
ld tmMaxCharWidth=%ld tmWeight=%ld tmOverhang=%l
d
\n
"
"
\t
tmDigitizedAspectX=%
ld tmDigitizedAspectY=%l
d
\n
"
"
\t
tmHeight=%
d tmAscent=%d tmDescent=%d tmInternalLeading=%d tmExternalLeading=%
d
\n
"
"
\t
tmAveCharWidth=%
d tmMaxCharWidth=%d tmWeight=%d tmOverhang=%
d
\n
"
"
\t
tmDigitizedAspectX=%
d tmDigitizedAspectY=%
d
\n
"
"
\t
tmFirstChar=%d tmLastChar=%d tmDefaultChar=%d tmBreakChar=%d
\n
"
"
\t
tmItalic=%u tmUnderlined=%u tmStruckOut=%u tmPitchAndFamily=%u tmCharSet=%u
\n
"
,
(
ft
&
RASTER_FONTTYPE
)
?
"raster"
:
""
,
...
...
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