From 365442c1ff67cfb7e35894dab755b6e9347ab2f0 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sat, 1 Feb 2014 16:19:47 -0500 Subject: [PATCH] wayland-surface: Fix typo --- src/wayland/meta-wayland-surface.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wayland/meta-wayland-surface.c b/src/wayland/meta-wayland-surface.c index a24c7f3b6..c8b1a5032 100644 --- a/src/wayland/meta-wayland-surface.c +++ b/src/wayland/meta-wayland-surface.c @@ -434,12 +434,12 @@ subsurface_surface_commit (MetaWaylandSurface *surface) } static void -subsurface_parent_surface_commited (MetaWaylandSurface *surface); +subsurface_parent_surface_committed (MetaWaylandSurface *surface); static void parent_surface_committed (gpointer data, gpointer user_data) { - subsurface_parent_surface_commited (data); + subsurface_parent_surface_committed (data); } static void @@ -1085,7 +1085,7 @@ bind_gtk_shell (struct wl_client *client, } static void -subsurface_parent_surface_commited (MetaWaylandSurface *surface) +subsurface_parent_surface_committed (MetaWaylandSurface *surface) { MetaWaylandCompositor *compositor = surface->compositor; MetaWaylandDoubleBufferedState *pending_surface_state = @@ -1295,7 +1295,7 @@ wl_subsurface_set_desync (struct wl_client *client, wl_container_of (subsurface, surface, subsurface); if (surface->sub.synchronous) - subsurface_parent_surface_commited (surface); + subsurface_parent_surface_committed (surface); surface->sub.synchronous = FALSE; }