Wayland: Add a missing break statement

Found by the clang static analyzer.
This commit is contained in:
Matthias Clasen 2013-08-04 00:59:41 +02:00
parent bfc8b4dd6b
commit 0d999c626f

View File

@ -789,6 +789,7 @@ pointer_handle_axis (void *data,
case WL_POINTER_AXIS_HORIZONTAL_SCROLL:
delta_x = wl_fixed_to_double (value) / 10.0;
delta_y = 0;
break;
default:
g_return_if_reached ();
}