Browse Source

app_python3s: use module name prefix for exports structure

Daniel-Constantin Mierla 1 year ago
parent
commit
ebe77a2068
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/app_python3s/app_python3s_mod.c

+ 1 - 1
src/modules/app_python3s/app_python3s_mod.c

@@ -83,7 +83,7 @@ static cmd_export_t cmds[] = {
 };
 };
 
 
 /** module exports */
 /** module exports */
-struct module_exports exports = {
+struct module_exports _app_python3s_exports = {
 	"app_python3s",			/* module name */
 	"app_python3s",			/* module name */
 	RTLD_NOW | RTLD_GLOBAL, /* dlopen flags */
 	RTLD_NOW | RTLD_GLOBAL, /* dlopen flags */
 	cmds,					/* exported functions */
 	cmds,					/* exported functions */