diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2020-08-24 23:03:03 +0100 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2020-08-25 13:21:25 +0100 |
commit | e9adfbae00e1907d9c080e1cdd34644670ba537c (patch) | |
tree | 53187ac3a9bd8e0374e761992f4166559db0a321 /src/bin/exactness/recorder.c | |
parent | 1b12294efbdcb219e33a12b00bb24548f2581bce (diff) |
exactness - cast enum assign - it is valid due to values. warn fix
Diffstat (limited to '')
-rw-r--r-- | src/bin/exactness/recorder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/exactness/recorder.c b/src/bin/exactness/recorder.c index 59a5549131..6936521d7a 100644 --- a/src/bin/exactness/recorder.c +++ b/src/bin/exactness/recorder.c | |||
@@ -137,7 +137,7 @@ _event_pointer_cb(void *data, const Efl_Event *event) | |||
137 | Eina_Position2D pos = efl_input_pointer_position_get(evp); | 137 | Eina_Position2D pos = efl_input_pointer_position_get(evp); |
138 | Efl_Pointer_Flags flags = efl_input_pointer_button_flags_get(evp); | 138 | Efl_Pointer_Flags flags = efl_input_pointer_button_flags_get(evp); |
139 | Exactness_Action_Multi_Event t = { tool, b, pos.x, pos.y, rad, radx, rady, pres, ang, | 139 | Exactness_Action_Multi_Event t = { tool, b, pos.x, pos.y, rad, radx, rady, pres, ang, |
140 | fx, fy, flags }; | 140 | fx, fy, (Evas_Button_Flags)flags }; |
141 | if (n_evas >= 0) _add_to_list(evt, n_evas, timestamp, &t, sizeof(t)); | 141 | if (n_evas >= 0) _add_to_list(evt, n_evas, timestamp, &t, sizeof(t)); |
142 | break; | 142 | break; |
143 | } | 143 | } |