[Goodies-commits] r4751 - xfce4-taskmanager/trunk/src

Mike Massonnet mmassonnet at xfce.org
Fri May 9 13:01:41 CEST 2008


Author: mmassonnet
Date: 2008-05-09 11:01:41 +0000 (Fri, 09 May 2008)
New Revision: 4751

Modified:
   xfce4-taskmanager/trunk/src/functions.c
Log:
Forgot functions.c to replace task.size against task.vsize


Modified: xfce4-taskmanager/trunk/src/functions.c
===================================================================
--- xfce4-taskmanager/trunk/src/functions.c	2008-05-09 11:01:37 UTC (rev 4750)
+++ xfce4-taskmanager/trunk/src/functions.c	2008-05-09 11:01:41 UTC (rev 4751)
@@ -58,7 +58,7 @@
 				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 @@
 				{
 					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;
 




More information about the Goodies-commits mailing list