tests: Fix signedness warnings

This commit is contained in:
Kristian Høgsberg 2012-04-13 10:11:11 -04:00
parent fa5f7b1191
commit ac06144cc9
3 changed files with 8 additions and 8 deletions

View file

@ -186,7 +186,7 @@ static void
marshal(struct marshal_data *data, const char *format, int size, ...)
{
struct wl_closure *closure;
static const int opcode = 4444;
static const uint32_t opcode = 4444;
static struct wl_object sender = { NULL, NULL, 1234 };
struct wl_message message = { "test", format, NULL };
va_list ap;