This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch v-0.25.0
in repository enlightenment.
View the commit online.
commit 6cc05c5f3e2d7ea66cecea87a743ad26e2bc0d9a
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Wed May 18 13:03:48 2022 +0100
e comp wl - fix warning for uninit var
actually code path wouldn't care, but this silences a warning
@fix
---
src/bin/e_comp_wl_data.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/e_comp_wl_data.c b/src/bin/e_comp_wl_data.c
index 370d92a88..d68a7e8dc 100644
--- a/src/bin/e_comp_wl_data.c
+++ b/src/bin/e_comp_wl_data.c
@@ -962,7 +962,7 @@ _e_comp_wl_clipboard_create(void)
E_API void
e_comp_wl_data_device_send_enter(E_Client *ec)
{
- struct wl_resource *data_device_res, *offer_res;
+ struct wl_resource *data_device_res = NULL, *offer_res = NULL;
uint32_t serial;
int x, y;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.