Browse Source

fix rt_system_module_init() -> rt_system_dlmodule_init(),
in components/libc/libdl/dlmodule.c.

SASANO Takayoshi 6 years ago
parent
commit
b41ecff518
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bsp/x86/applications/application.c

+ 1 - 1
bsp/x86/applications/application.c

@@ -48,7 +48,7 @@ void components_init(void)
 #endif
 #endif
 
 
 #ifdef RT_USING_MODULE
 #ifdef RT_USING_MODULE
-	rt_system_module_init();
+	rt_system_dlmodule_init();
 #endif
 #endif
 #endif
 #endif
 }
 }