Use PROCESS_NAME_STRING macro to handle NO_PROCESS_NAMES

This commit is contained in:
David Kopf 2011-08-03 11:08:40 -04:00
parent 6ec85fe079
commit 44f4ee9315
8 changed files with 13 additions and 15 deletions

View file

@ -61,7 +61,8 @@ dlloader_load(char *path, char *arg)
}
/* Start the process. */
printf("Starting '%s'\n", (*p)->name);
printf("Starting '%s'\n", PROCESS_NAME_STRING(*p));
process_start(*p, arg);
return LOADER_OK;