raster pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=60cea009dc3c1e14636527bec8c089a49f19fa9c

commit 60cea009dc3c1e14636527bec8c089a49f19fa9c
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Sat May 16 00:24:11 2020 +0100

    wl desktop shell - fix symbols to explicily be extern as they should
    
    missing externs - compiler fixed it up for us... -fno-common will stop
    that... and this fixes that.
    
    @fix
---
 src/modules/wl_desktop_shell/e_mod_main.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/modules/wl_desktop_shell/e_mod_main.h 
b/src/modules/wl_desktop_shell/e_mod_main.h
index 210af0122..4bff931ce 100644
--- a/src/modules/wl_desktop_shell/e_mod_main.h
+++ b/src/modules/wl_desktop_shell/e_mod_main.h
@@ -4,9 +4,9 @@
 EINTERN Eina_Bool   e_input_panel_init(void);
 EINTERN void        e_input_panel_shutdown(void);
 
-EINTERN Eina_Hash *shell_resources;
-EINTERN Eina_Hash *xdg_shell_resources;
-EINTERN Eina_List *hooks;
+EINTERN extern Eina_Hash *shell_resources;
+EINTERN extern Eina_Hash *xdg_shell_resources;
+EINTERN extern Eina_List *hooks;
 
 
 EINTERN void e_shell_surface_destroy(struct wl_resource *resource);

-- 


Reply via email to