summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-05-16 00:24:11 +0100
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-05-16 00:25:19 +0100
commit60cea009dc3c1e14636527bec8c089a49f19fa9c (patch)
treef42b755c0877c9bda1ef886dc0e14ca7e74fc0cc
parent9f3fcf22258b43bdb4662be2dcd7c852fce7af2b (diff)
downloadenlightenment-60cea009dc3c1e14636527bec8c089a49f19fa9c.tar.gz
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
-rw-r--r--src/modules/wl_desktop_shell/e_mod_main.h6
1 files 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 210af01222..4bff931ce5 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);