From 92101a0a245fb625fbee03712a9d2548b545fc1a Mon Sep 17 00:00:00 2001 From: Mike Massonnet Date: Fri, 9 May 2008 11:01:41 +0000 Subject: [PATCH] Forgot functions.c to replace task.size against task.vsize (Old svn revision: 4751) --- src/functions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/functions.c b/src/functions.c index 525f04b..d9edb15 100644 --- a/src/functions.c +++ b/src/functions.c @@ -58,7 +58,7 @@ gboolean refresh_task_list(void) if( (gint)tmp->ppid != (gint)new_tmp->ppid || strcmp(tmp->state,new_tmp->state) || - (unsigned int)tmp->size != (unsigned int)new_tmp->size || + (unsigned int)tmp->vsize != (unsigned int)new_tmp->vsize || (unsigned int)tmp->rss != (unsigned int)new_tmp->rss || (unsigned int)tmp->time != (unsigned int)tmp->old_time || tmp->prio != new_tmp->prio @@ -66,7 +66,7 @@ gboolean refresh_task_list(void) { tmp->ppid = new_tmp->ppid; strcpy(tmp->state, new_tmp->state); - tmp->size = new_tmp->size; + tmp->vsize = new_tmp->vsize; tmp->rss = new_tmp->rss; tmp->prio = new_tmp->prio;