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
798beb2c
Commit
798beb2c
authored
Mar 21, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Mar 26, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Print the debug string and not the pointer to it.
parent
810b619e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
folders.c
dlls/shell32/folders.c
+2
-2
shellpath.c
dlls/shell32/shellpath.c
+1
-1
No files found.
dlls/shell32/folders.c
View file @
798beb2c
...
...
@@ -355,8 +355,8 @@ static HRESULT WINAPI IExtractIconW_fnExtract(IExtractIconW * iface, LPCWSTR psz
IExtractIconWImpl
*
This
=
impl_from_IExtractIconW
(
iface
);
int
index
;
FIXME
(
"(%p) (file=%p index=%d %p %p size=%08x) semi-stub
\n
"
,
This
,
debugstr_w
(
pszFile
),
(
signed
)
nIconIndex
,
phiconLarge
,
phiconSmall
,
nIconSize
);
FIXME
(
"(%p) (file=%s index=%d %p %p size=%08x) semi-stub
\n
"
,
This
,
debugstr_w
(
pszFile
)
,
(
signed
)
nIconIndex
,
phiconLarge
,
phiconSmall
,
nIconSize
);
index
=
SIC_GetIconIndex
(
pszFile
,
nIconIndex
,
0
);
...
...
dlls/shell32/shellpath.c
View file @
798beb2c
...
...
@@ -3578,7 +3578,7 @@ static HRESULT WINAPI knownfolder_SetPath(
struct
knownfolder
*
knownfolder
=
impl_from_IKnownFolder
(
iface
);
HRESULT
hr
=
S_OK
;
TRACE
(
"(%p, 0x%08x, %
p
)
\n
"
,
knownfolder
,
dwFlags
,
debugstr_w
(
pszPath
));
TRACE
(
"(%p, 0x%08x, %
s
)
\n
"
,
knownfolder
,
dwFlags
,
debugstr_w
(
pszPath
));
/* check if the known folder is registered */
if
(
!
knownfolder
->
registryPath
)
...
...
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