SIM: Clean up some comments

This commit is contained in:
Gregory Nutt 2016-02-18 14:56:17 -06:00
parent 526c90986a
commit de885064d2
1 changed files with 2 additions and 2 deletions

View File

@ -133,11 +133,11 @@ static void *sim_cpu0_trampoline(void *arg)
return NULL; return NULL;
} }
/* Give control to os_start */ /* Give control to os_start() */
os_start(); os_start();
/* The os_start() should not return */ /* os_start() should not return */
return NULL; return NULL;
} }