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
dd28d5be
Commit
dd28d5be
authored
Oct 06, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweak TRACE()s to simplify '\n' checks.
parent
4b248447
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
7 deletions
+8
-7
variant.c
dlls/oleaut32/variant.c
+3
-3
usp10.c
dlls/usp10/usp10.c
+3
-2
context.c
dlls/wintab32/context.c
+2
-2
No files found.
dlls/oleaut32/variant.c
View file @
dd28d5be
...
...
@@ -2084,9 +2084,9 @@ HRESULT WINAPI VarNumFromParseNum(NUMPARSE *pNumprs, BYTE *rgbDig,
multiplier10
=
pNumprs
->
nPwr10
;
}
TRACE
(
"cDig %d; nPwr10 %d, whole %d, frac %d
"
,
pNumprs
->
cDig
,
pNumprs
->
nPwr10
,
wholeNumberDigits
,
fractionalDigits
);
TRACE
(
"mult %d; div %d
\n
"
,
multiplier10
,
divisor10
);
TRACE
(
"cDig %d; nPwr10 %d, whole %d, frac %d
mult %d; div %d
\n
"
,
pNumprs
->
cDig
,
pNumprs
->
nPwr10
,
wholeNumberDigits
,
fractionalDigits
,
multiplier10
,
divisor10
);
if
(
dwVtBits
&
(
INTEGER_VTBITS
|
VTBIT_DECIMAL
)
&&
(
!
fractionalDigits
||
!
(
dwVtBits
&
(
REAL_VTBITS
|
VTBIT_CY
|
VTBIT_DECIMAL
))))
...
...
dlls/usp10/usp10.c
View file @
dd28d5be
...
...
@@ -340,8 +340,9 @@ HRESULT WINAPI ScriptItemize(const WCHAR *pwcInChars, int cInChars, int cMaxItem
pItems
[
index
].
a
.
s
.
fGcpClusters
=
0
;
pItems
[
index
].
a
.
s
.
fReserved
=
0
;
pItems
[
index
].
a
.
s
.
fEngineReserved
=
0
;
TRACE
(
"New_Script=%d, eScript=%d "
,
New_Script
,
pItems
[
index
].
a
.
eScript
);
TRACE
(
"index=%d cnt=%d iCharPos=%d
\n
"
,
index
,
cnt
,
pItems
[
index
].
iCharPos
=
cnt
);
TRACE
(
"New_Script=%d, eScript=%d index=%d cnt=%d iCharPos=%d
\n
"
,
New_Script
,
pItems
[
index
].
a
.
eScript
,
index
,
cnt
,
pItems
[
index
].
iCharPos
=
cnt
);
for
(
cnt
=
0
;
cnt
<
cInChars
;
cnt
++
)
{
...
...
dlls/wintab32/context.c
View file @
dd28d5be
...
...
@@ -94,7 +94,7 @@ static inline void DUMPCONTEXT(LOGCONTEXTA lc)
CHAR
bits1
[
100
];
CHAR
bits2
[
100
];
sprintf
(
mmsg
,
"%s, %x, %x, %x, %x, %x, %x, %x%s, %x%s, %x%s, %x, %x, %i, %i, %i, %li ,%li, %li, %li, %li, %li,%li, %li, %li, %li, %li, %li, %i, %i, %i, %i, %i %li %li
\n
"
,
sprintf
(
mmsg
,
"%s, %x, %x, %x, %x, %x, %x, %x%s, %x%s, %x%s, %x, %x, %i, %i, %i, %li ,%li, %li, %li, %li, %li,%li, %li, %li, %li, %li, %li, %i, %i, %i, %i, %i %li %li"
,
debugstr_a
(
lc
.
lcName
),
lc
.
lcOptions
,
lc
.
lcStatus
,
lc
.
lcLocks
,
lc
.
lcMsgBase
,
lc
.
lcDevice
,
lc
.
lcPktRate
,
(
UINT
)
lc
.
lcPktData
,
DUMPBITS
(
lc
.
lcPktData
,
bits
),
(
UINT
)
lc
.
lcPktMode
,
DUMPBITS
(
lc
.
lcPktMode
,
bits1
),
(
UINT
)
lc
.
lcMoveMask
,
...
...
@@ -104,7 +104,7 @@ lc.lcInExtZ, lc.lcOutOrgX, lc.lcOutOrgY, lc.lcOutOrgZ, lc.lcOutExtX,
lc
.
lcOutExtY
,
lc
.
lcOutExtZ
,
lc
.
lcSensX
,
lc
.
lcSensY
,
lc
.
lcSensZ
,
lc
.
lcSysMode
,
lc
.
lcSysOrgX
,
lc
.
lcSysOrgY
,
lc
.
lcSysExtX
,
lc
.
lcSysExtY
,
lc
.
lcSysSensX
,
lc
.
lcSysSensY
);
TRACE
(
"context: %s"
,
mmsg
);
TRACE
(
"context: %s
\n
"
,
mmsg
);
}
...
...
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