Commit ecf2c570 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Fix signed/unsigned compilation warnings.

parent 175d0595
...@@ -134,7 +134,7 @@ params: ...@@ -134,7 +134,7 @@ params:
- system parameter id - system parameter id
- supposed value of the registry key - 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, ok( 1 == change_counter,
"Missed a message: change_counter=%d", change_counter ); "Missed a message: change_counter=%d", change_counter );
...@@ -347,7 +347,7 @@ static void test_SPI_SETBORDER( void ) /* 6 */ ...@@ -347,7 +347,7 @@ static void test_SPI_SETBORDER( void ) /* 6 */
UINT old_border; UINT old_border;
UINT curr_val; UINT curr_val;
UINT border; UINT border;
UINT frame; INT frame;
char buf[10]; char buf[10];
/* tests one configuration of border settings */ /* tests one configuration of border settings */
...@@ -432,9 +432,9 @@ static void test_SPI_SETKEYBOARDSPEED( void ) /* 10 */ ...@@ -432,9 +432,9 @@ static void test_SPI_SETKEYBOARDSPEED( void ) /* 10 */
static void test_SPI_ICONHORIZONTALSPACING( void ) /* 13 */ static void test_SPI_ICONHORIZONTALSPACING( void ) /* 13 */
{ {
UINT old_spacing; INT old_spacing;
UINT spacing; INT spacing;
UINT curr_val; INT curr_val;
char buf[10]; char buf[10];
trace("testing SPI_ICONHORIZONTALSPACING\n"); trace("testing SPI_ICONHORIZONTALSPACING\n");
...@@ -582,9 +582,9 @@ static void test_SPI_SETKEYBOARDDELAY( void ) /* 23 */ ...@@ -582,9 +582,9 @@ static void test_SPI_SETKEYBOARDDELAY( void ) /* 23 */
static void test_SPI_ICONVERTICALSPACING( void ) /* 24 */ static void test_SPI_ICONVERTICALSPACING( void ) /* 24 */
{ {
UINT old_spacing; INT old_spacing;
UINT spacing; INT spacing;
UINT curr_val; INT curr_val;
char buf[10]; char buf[10];
trace("testing SPI_ICONVERTICALSPACING\n"); trace("testing SPI_ICONVERTICALSPACING\n");
...@@ -700,8 +700,8 @@ static void test_SPI_SETMENUDROPALIGNMENT( void ) /* 28 */ ...@@ -700,8 +700,8 @@ static void test_SPI_SETMENUDROPALIGNMENT( void ) /* 28 */
static void test_SPI_SETDOUBLECLKWIDTH( void ) /* 29 */ static void test_SPI_SETDOUBLECLKWIDTH( void ) /* 29 */
{ {
UINT old_width; INT old_width;
UINT curr_val; INT curr_val;
char buf[10]; char buf[10];
trace("testing SPI_SETDOUBLECLKWIDTH\n"); trace("testing SPI_SETDOUBLECLKWIDTH\n");
...@@ -731,8 +731,8 @@ static void test_SPI_SETDOUBLECLKWIDTH( void ) /* 29 */ ...@@ -731,8 +731,8 @@ static void test_SPI_SETDOUBLECLKWIDTH( void ) /* 29 */
static void test_SPI_SETDOUBLECLKHEIGHT( void ) /* 30 */ static void test_SPI_SETDOUBLECLKHEIGHT( void ) /* 30 */
{ {
UINT old_height; INT old_height;
UINT curr_val; INT curr_val;
char buf[10]; char buf[10];
trace("testing SPI_SETDOUBLECLKHEIGHT\n"); trace("testing SPI_SETDOUBLECLKHEIGHT\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment