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
ecf2c570
Commit
ecf2c570
authored
Jan 05, 2003
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 05, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix signed/unsigned compilation warnings.
parent
175d0595
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
sysparams.c
dlls/user/tests/sysparams.c
+12
-12
No files found.
dlls/user/tests/sysparams.c
View file @
ecf2c570
...
...
@@ -134,7 +134,7 @@ params:
- system parameter id
- supposed value of the registry key
*/
static
void
test_change_message
(
UINT
action
,
char
*
reg_section
)
static
void
test_change_message
(
int
action
,
char
*
reg_section
)
{
ok
(
1
==
change_counter
,
"Missed a message: change_counter=%d"
,
change_counter
);
...
...
@@ -347,7 +347,7 @@ static void test_SPI_SETBORDER( void ) /* 6 */
UINT
old_border
;
UINT
curr_val
;
UINT
border
;
U
INT
frame
;
INT
frame
;
char
buf
[
10
];
/* tests one configuration of border settings */
...
...
@@ -432,9 +432,9 @@ static void test_SPI_SETKEYBOARDSPEED( void ) /* 10 */
static
void
test_SPI_ICONHORIZONTALSPACING
(
void
)
/* 13 */
{
U
INT
old_spacing
;
U
INT
spacing
;
U
INT
curr_val
;
INT
old_spacing
;
INT
spacing
;
INT
curr_val
;
char
buf
[
10
];
trace
(
"testing SPI_ICONHORIZONTALSPACING
\n
"
);
...
...
@@ -582,9 +582,9 @@ static void test_SPI_SETKEYBOARDDELAY( void ) /* 23 */
static
void
test_SPI_ICONVERTICALSPACING
(
void
)
/* 24 */
{
U
INT
old_spacing
;
U
INT
spacing
;
U
INT
curr_val
;
INT
old_spacing
;
INT
spacing
;
INT
curr_val
;
char
buf
[
10
];
trace
(
"testing SPI_ICONVERTICALSPACING
\n
"
);
...
...
@@ -700,8 +700,8 @@ static void test_SPI_SETMENUDROPALIGNMENT( void ) /* 28 */
static
void
test_SPI_SETDOUBLECLKWIDTH
(
void
)
/* 29 */
{
U
INT
old_width
;
U
INT
curr_val
;
INT
old_width
;
INT
curr_val
;
char
buf
[
10
];
trace
(
"testing SPI_SETDOUBLECLKWIDTH
\n
"
);
...
...
@@ -731,8 +731,8 @@ static void test_SPI_SETDOUBLECLKWIDTH( void ) /* 29 */
static
void
test_SPI_SETDOUBLECLKHEIGHT
(
void
)
/* 30 */
{
U
INT
old_height
;
U
INT
curr_val
;
INT
old_height
;
INT
curr_val
;
char
buf
[
10
];
trace
(
"testing SPI_SETDOUBLECLKHEIGHT
\n
"
);
...
...
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