1
0
mirror of https://github.com/brl/mutter.git synced 2025-04-26 03:39:39 +00:00

Fix compiler warning

Mark a variable as unused.
This commit is contained in:
Emmanuele Bassi 2012-07-17 17:40:47 -04:00
parent 76e7ab90f6
commit 08da111f5e

@ -306,7 +306,7 @@ actor_captured_event_cb (ClutterActor *actor,
ClutterGestureAction *action) ClutterGestureAction *action)
{ {
ClutterGestureActionPrivate *priv = action->priv; ClutterGestureActionPrivate *priv = action->priv;
GesturePoint *point; GesturePoint *point G_GNUC_UNUSED;
if ((clutter_event_type (event) != CLUTTER_BUTTON_PRESS) && if ((clutter_event_type (event) != CLUTTER_BUTTON_PRESS) &&
(clutter_event_type (event) != CLUTTER_TOUCH_BEGIN)) (clutter_event_type (event) != CLUTTER_TOUCH_BEGIN))