From 0dc787ee6b976c012c1c11f79f4b1bd02e91d150 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Wed, 18 May 2022 08:26:51 -0400 Subject: [PATCH] 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;