Fixes error when processes name are not used

This commit is contained in:
Antonio Lignan 2016-02-22 16:02:06 +01:00
parent 93b9089164
commit 4d4930921e
1 changed files with 2 additions and 0 deletions

View File

@ -116,11 +116,13 @@ PROCESS_THREAD(shell_exec_process, ev, data)
shell_output_str(&exec_command, print, symbol);
if(ret == ELFLOADER_OK) {
#if !PROCESS_CONF_NO_PROCESS_NAMES
int i;
for(i = 0; elfloader_autostart_processes[i] != NULL; ++i) {
shell_output_str(&exec_command, "exec: starting process ",
elfloader_autostart_processes[i]->name);
}
#endif
autostart_start(elfloader_autostart_processes);
}