From 09fe94da18d33d2c4e1fe415e8346fa99b9944b4 Mon Sep 17 00:00:00 2001 From: Narendran Gopalakrishnan Date: Sat, 17 Oct 2020 16:24:45 +0530 Subject: Improving Command display/sort --- TraceScreen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'TraceScreen.c') diff --git a/TraceScreen.c b/TraceScreen.c index 1280b1e4..47cf0ab1 100644 --- a/TraceScreen.c +++ b/TraceScreen.c @@ -73,7 +73,7 @@ void TraceScreen_delete(Object* cast) { void TraceScreen_draw(InfoScreen* this) { attrset(CRT_colors[PANEL_HEADER_FOCUS]); mvhline(0, 0, ' ', COLS); - mvprintw(0, 0, "Trace of process %d - %s", this->process->pid, this->process->comm); + mvprintw(0, 0, "Trace of process %d - %s", this->process->pid, Process_getCommand(this->process)); attrset(CRT_colors[DEFAULT_COLOR]); IncSet_drawBar(this->inc); } -- cgit v1.2.3