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
15f4bac7
Commit
15f4bac7
authored
May 21, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
May 21, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include/wine/debug.h: Fix compilation warning in 64-bit mode.
parent
7472fa44
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
debug.h
include/wine/debug.h
+1
-1
No files found.
include/wine/debug.h
View file @
15f4bac7
...
@@ -186,7 +186,7 @@ static inline const char *wine_dbgstr_w( const WCHAR *s )
...
@@ -186,7 +186,7 @@ static inline const char *wine_dbgstr_w( const WCHAR *s )
static
inline
const
char
*
wine_dbgstr_guid
(
const
GUID
*
id
)
static
inline
const
char
*
wine_dbgstr_guid
(
const
GUID
*
id
)
{
{
if
(
!
id
)
return
"(null)"
;
if
(
!
id
)
return
"(null)"
;
if
(
!
((
INT_PTR
)
id
>>
16
))
return
wine_dbg_sprintf
(
"<guid-0x%04x>"
,
(
INT
_PTR
)
id
&
0xffff
);
if
(
!
((
ULONG_PTR
)
id
>>
16
))
return
wine_dbg_sprintf
(
"<guid-0x%04lx>"
,
(
ULONG
_PTR
)
id
&
0xffff
);
return
wine_dbg_sprintf
(
"{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}"
,
return
wine_dbg_sprintf
(
"{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}"
,
id
->
Data1
,
id
->
Data2
,
id
->
Data3
,
id
->
Data1
,
id
->
Data2
,
id
->
Data3
,
id
->
Data4
[
0
],
id
->
Data4
[
1
],
id
->
Data4
[
2
],
id
->
Data4
[
3
],
id
->
Data4
[
0
],
id
->
Data4
[
1
],
id
->
Data4
[
2
],
id
->
Data4
[
3
],
...
...
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