This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efl.
View the commit online.
commit 190cbe270782afb14930db6e900b013d39852494
Author: Vincent Torri <[email protected]>
AuthorDate: Tue Oct 7 06:43:36 2025 +0200
elementary: change len type to unsigned int, as it is used to access elements of an array. Fix also some warnings
---
src/lib/elementary/efl_ui_position_manager_list.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/lib/elementary/efl_ui_position_manager_list.c b/src/lib/elementary/efl_ui_position_manager_list.c
index dd90b12b2b..9ba89d8383 100644
--- a/src/lib/elementary/efl_ui_position_manager_list.c
+++ b/src/lib/elementary/efl_ui_position_manager_list.c
@@ -55,7 +55,7 @@ static void
cache_require(Eo *obj EINA_UNUSED, Efl_Ui_Position_Manager_List_Data *pd)
{
unsigned int i;
- const int len = 100;
+ const unsigned int len = 100;
Efl_Ui_Position_Manager_Size_Batch_Entity size_buffer[len];
Efl_Ui_Position_Manager_Size_Batch_Result size_result;
@@ -186,7 +186,7 @@ _position_items(Eo *obj EINA_UNUSED, Efl_Ui_Position_Manager_List_Data *pd, Vis_
Efl_Gfx_Entity *first_group = NULL, *first_fully_visual_group = NULL;
Eina_Size2D first_group_size;
Eina_Rect geom;
- const int len = 100;
+ const unsigned int len = 100;
Efl_Ui_Position_Manager_Size_Batch_Entity size_buffer[len];
Efl_Ui_Position_Manager_Size_Batch_Result size_result;
Efl_Ui_Position_Manager_Object_Batch_Entity obj_buffer[len];
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.