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
5f2558f5
Commit
5f2558f5
authored
Aug 08, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi/tests: Write-strings warnings fix.
parent
c6219326
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
ordinal.c
dlls/shlwapi/ordinal.c
+1
-1
ordinal.c
dlls/shlwapi/tests/ordinal.c
+1
-1
shreg.c
dlls/shlwapi/tests/shreg.c
+1
-1
No files found.
dlls/shlwapi/ordinal.c
View file @
5f2558f5
...
...
@@ -2281,7 +2281,7 @@ BOOL WINAPI FDSA_Destroy(FDSA_info *info)
*
* Insert element into an FDSA array
*/
DWORD
WINAPI
FDSA_InsertItem
(
FDSA_info
*
info
,
DWORD
where
,
void
*
block
)
DWORD
WINAPI
FDSA_InsertItem
(
FDSA_info
*
info
,
DWORD
where
,
const
void
*
block
)
{
TRACE
(
"(%p 0x%08lx %p)
\n
"
,
info
,
where
,
block
);
if
(
where
>
info
->
num_items
)
...
...
dlls/shlwapi/tests/ordinal.c
View file @
5f2558f5
...
...
@@ -242,7 +242,7 @@ static void test_fdsa(void)
BOOL
(
WINAPI
*
pFDSA_Initialize
)(
DWORD
block_size
,
DWORD
inc
,
FDSA_info
*
info
,
void
*
mem
,
DWORD
init_blocks
);
BOOL
(
WINAPI
*
pFDSA_Destroy
)(
FDSA_info
*
info
);
DWORD
(
WINAPI
*
pFDSA_InsertItem
)(
FDSA_info
*
info
,
DWORD
where
,
void
*
block
);
DWORD
(
WINAPI
*
pFDSA_InsertItem
)(
FDSA_info
*
info
,
DWORD
where
,
const
void
*
block
);
BOOL
(
WINAPI
*
pFDSA_DeleteItem
)(
FDSA_info
*
info
,
DWORD
where
);
FDSA_info
info
;
...
...
dlls/shlwapi/tests/shreg.c
View file @
5f2558f5
...
...
@@ -53,7 +53,7 @@ static DWORD nExpLen2;
static
const
char
*
sEmptyBuffer
=
"0123456789"
;
/* delete key and all its subkeys */
static
DWORD
delete_key
(
HKEY
hkey
,
LP
STR
parent
,
LP
STR
keyname
)
static
DWORD
delete_key
(
HKEY
hkey
,
LP
CSTR
parent
,
LPC
STR
keyname
)
{
HKEY
parentKey
;
DWORD
ret
;
...
...
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