commit | 875ab9e73505cfe922c28bc72f716995f1191ad8 | [log] [tgz] |
---|---|---|
author | Kristian Høgsberg <krh@bitplanet.net> | Fri Mar 30 11:52:39 2012 -0400 |
committer | Kristian Høgsberg <krh@bitplanet.net> | Fri Mar 30 11:52:39 2012 -0400 |
tree | 2f844ab1c07aebb3548c60e7f687895f238fc329 | |
parent | ed92f79655e65f2acd40b99d8c6281a17845d8d8 [diff] [blame] |
Add signedness warning flag and fix fallout
diff --git a/src/shell.c b/src/shell.c index 02f203a..46fa370 100644 --- a/src/shell.c +++ b/src/shell.c
@@ -1181,7 +1181,7 @@ surface_opacity_binding(struct wl_input_device *device, uint32_t time, uint32_t key, uint32_t button, uint32_t axis, int32_t value, void *data) { - int step = 15; + uint32_t step = 15; struct shell_surface *shsurf; struct weston_surface *surface = (struct weston_surface *) device->pointer_focus;