compositor: Use uint32_t for the msecs value consistently

This commit is contained in:
Rob Bradford
2012-08-02 15:36:57 +01:00
committed by Kristian Høgsberg
parent d9a8e16b7b
commit 0fb797596a
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1101,7 +1101,7 @@ surface_accumulate_damage(struct weston_surface *surface,
}
static void
weston_output_repaint(struct weston_output *output, int msecs)
weston_output_repaint(struct weston_output *output, uint32_t msecs)
{
struct weston_compositor *ec = output->compositor;
struct weston_surface *es;
@@ -1198,7 +1198,7 @@ weston_compositor_read_input(int fd, uint32_t mask, void *data)
}
WL_EXPORT void
weston_output_finish_frame(struct weston_output *output, int msecs)
weston_output_finish_frame(struct weston_output *output, uint32_t msecs)
{
struct weston_compositor *compositor = output->compositor;
struct wl_event_loop *loop =
+1 -1
View File
@@ -536,7 +536,7 @@ void
weston_layer_init(struct weston_layer *layer, struct wl_list *below);
void
weston_output_finish_frame(struct weston_output *output, int msecs);
weston_output_finish_frame(struct weston_output *output, uint32_t msecs);
void
weston_output_schedule_repaint(struct weston_output *output);
void