shm: Fix stride signedness in protocol

Make stride argument of wl_shm.create_buffer a signed integer.
This commit is contained in:
Kristian Høgsberg 2012-03-30 10:24:29 -04:00
parent 4560b6b6b4
commit 485dd7b6e2
2 changed files with 2 additions and 2 deletions

View file

@ -93,7 +93,7 @@ wl_shm_buffer_init(struct wl_client *client, uint32_t id,
static void
shm_create_buffer(struct wl_client *client, struct wl_resource *resource,
uint32_t id, int fd, int32_t width, int32_t height,
uint32_t stride, uint32_t format)
int32_t stride, uint32_t format)
{
struct wl_shm_buffer *buffer;
void *data;