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 0dc787ee6b976c012c1c11f79f4b1bd02e91d150
Author: Christopher Michael <devilho...@comcast.net>
AuthorDate: Wed May 18 08:26:51 2022 -0400
elementary_test: Fix warning about truncated string
gcc reports output between 7 and 17 bytes into a dest of size 16 so
increase destination size slightly
@fix
---
src/bin/elementary/test_ctxpopup.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/elementary/test_ctxpopup.c b/src/bin/elementary/test_ctxpopup.c
index 2b95bbe389..cb8c2addf1 100644
--- a/src/bin/elementary/test_ctxpopup.c
+++ b/src/bin/elementary/test_ctxpopup.c
@@ -475,7 +475,7 @@ _list_item_cb11(void *data EINA_UNUSED, Evas_Object *obj, void *event_info EINA_
{
Evas_Object *ctxpopup;
Evas_Coord x,y;
- char label[16];
+ char label[18];
int i = 0;
if (list_mouse_down > 0) return;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.