diff options
author | Ivan Chebykin <ivan@chebykin.org> | 2018-05-04 18:41:51 +0300 |
---|---|---|
committer | Ivan Chebykin <ivan@chebykin.org> | 2018-05-04 18:41:51 +0300 |
commit | cec7cd2b395396d9a11a2d0155601406b0b5b5aa (patch) | |
tree | 2a7458c9f16c4b0e68f7be11a99672efa89550ce | |
parent | bf793a68c1e62a7634c22681b33c33fa557df916 (diff) |
Fix gcc maybe-uninitialized in wlr_cursor apply_output_transform
-rw-r--r-- | types/wlr_cursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/types/wlr_cursor.c b/types/wlr_cursor.c index d8a7fa08..9a31fca2 100644 --- a/types/wlr_cursor.c +++ b/types/wlr_cursor.c @@ -332,7 +332,7 @@ static void handle_pointer_motion(struct wl_listener *listener, void *data) { static void apply_output_transform(double *x, double *y, enum wl_output_transform transform) { - double dx, dy; + double dx = *x, dy = *y; double width = 1.0, height = 1.0; switch (transform) { |