Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvraj1803 committed Nov 10, 2023
1 parent 7b357bf commit 95145ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell/shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void shell_init(){
// ===================================== Shell Commands =================================================

void list(){
printf("VMID\tName\t\t\t\tState\tVirtual Time(ms)\n");
printf("VMID\tName\t\t\t\tState\tVirtual Time(ticks)\n");
for(int vm=1;vm<total_vms;vm++){
printf("%d\t%s\t%s\t%d\n", vmlist[vm]->vmid,vmlist[vm]->name,vm_state_to_string(vmlist[vm]->state),get_virt_time(vmlist[vm]));
}
Expand Down

0 comments on commit 95145ea

Please sign in to comment.