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
6562b25b
Commit
6562b25b
authored
May 21, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Remove unnecessary linefeeds in traces.
parent
1394c6ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
autocomplete.c
dlls/shell32/autocomplete.c
+1
-1
debughlp.c
dlls/shell32/debughlp.c
+1
-1
No files found.
dlls/shell32/autocomplete.c
View file @
6562b25b
...
...
@@ -160,7 +160,7 @@ static HRESULT WINAPI IAutoComplete2_fnQueryInterface(
{
IAutoCompleteImpl
*
This
=
(
IAutoCompleteImpl
*
)
iface
;
TRACE
(
"(%p)->(
\n\t
IID:
\t
%s,%p)
\n
"
,
This
,
shdebugstr_guid
(
riid
),
ppvObj
);
TRACE
(
"(%p)->(
IID:
%s,%p)
\n
"
,
This
,
shdebugstr_guid
(
riid
),
ppvObj
);
*
ppvObj
=
NULL
;
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
...
...
dlls/shell32/debughlp.c
View file @
6562b25b
...
...
@@ -430,7 +430,7 @@ const char * shdebugstr_guid( const struct _GUID *id )
name
=
clsidbuf
;
}
return
wine_dbg_sprintf
(
"
\n\t
{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x} (%s)"
,
return
wine_dbg_sprintf
(
"{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x} (%s)"
,
id
->
Data1
,
id
->
Data2
,
id
->
Data3
,
id
->
Data4
[
0
],
id
->
Data4
[
1
],
id
->
Data4
[
2
],
id
->
Data4
[
3
],
id
->
Data4
[
4
],
id
->
Data4
[
5
],
id
->
Data4
[
6
],
id
->
Data4
[
7
],
name
?
name
:
"unknown"
);
...
...
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