tests: fix compilation with -Wall -Werror

When compiling spice with make CFLAGS="-g3 -ggdb3 -O0 -Wall -Werror",
the build broken because of a few unused variables/missing returns.
This patch fixes these warnings.
This commit is contained in:
Christophe Fergeau 2011-03-21 13:38:19 +01:00 committed by Christophe Fergeau
parent bb9b8a3c13
commit 3ba093a57e
3 changed files with 7 additions and 3 deletions

View File

@ -319,7 +319,7 @@ void basic_event_loop_mainloop(void)
if ((next_timer = get_next_timer()) != NULL) {
calc_next_timeout(next_timer, &next_timer_timeout);
timeout = &next_timer_timeout;
DPRINTF(1, "timeout of %d.%06d",
DPRINTF(1, "timeout of %zd.%06zd",
timeout->tv_sec, timeout->tv_usec);
} else {
timeout = NULL;

View File

@ -40,7 +40,6 @@ static void test_spice_destroy_update(SimpleSpiceUpdate *update)
#define SINGLE_PART 8
static const int angle_parts = 64 / SINGLE_PART;
static int angle = 0;
static int unique = 1;
static int color = -1;
static int c_i = 0;
@ -354,7 +353,6 @@ static int num_simple_commands = 0;
static void produce_command()
{
static int target_surface = 0;
static int simple_command_index = 0;
static int cmd_index = 0;
ASSERT(num_simple_commands);
@ -449,6 +447,7 @@ static struct {
uint8_t data[CURSOR_WIDTH * CURSOR_HEIGHT * 4]; // 32bit per pixel
} cursor;
#if 0
static void init_cursor()
{
cursor.cursor.header.unique = 0; // TODO ??
@ -461,6 +460,7 @@ static void init_cursor()
cursor.cursor.chunk.data_size = cursor.cursor.data_size;
cursor.cursor.chunk.prev_chunk = cursor.cursor.chunk.next_chunk = 0;
}
#endif
static int get_cursor_command(QXLInstance *qin, struct QXLCommandExt *ext)
{
@ -515,6 +515,7 @@ static void notify_update(QXLInstance *qin, uint32_t update_id)
static int flush_resources(QXLInstance *qin)
{
printf("%s\n", __func__);
return TRUE;
}
QXLInterface display_sif = {

View File

@ -1,8 +1,10 @@
#include <stdlib.h>
#include <strings.h>
#include <spice.h>
SpiceTimer* timer_add(SpiceTimerFunc func, void *opaque)
{
return NULL;
}
void timer_start(SpiceTimer *timer, uint32_t ms)
@ -19,6 +21,7 @@ void timer_remove(SpiceTimer *timer)
SpiceWatch *watch_add(int fd, int event_mask, SpiceWatchFunc func, void *opaque)
{
return NULL;
}
void watch_update_mask(SpiceWatch *watch, int event_mask)