Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bsp/efm32/application.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ static void app_main(void *parameter)

/* create application */
struct rtgui_app *app;
app = rtgui_app_create(rt_thread_self(), "gui_app");
app = rtgui_app_create("gui_app");
if (app == RT_NULL)
{
rt_kprintf("Create application \"gui_app\" failed!\n");
Expand Down Expand Up @@ -403,7 +403,7 @@ static void app_photo(void *parameter)

/* create application */
struct rtgui_app *app;
app = rtgui_app_create(rt_thread_self(), "pho_app");
app = rtgui_app_create("pho_app");
if (app == RT_NULL)
{
rt_kprintf("Create application \"pho_app\" failed!\n");
Expand Down