Browse Source

app_python3: use module name prefix for exports structure

Daniel-Constantin Mierla 1 year ago
parent
commit
114d6fe510
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/app_python3/app_python3_mod.c

+ 1 - 1
src/modules/app_python3/app_python3_mod.c

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