Fixed copy/paste error while setting buf->state.

* procstate.c: (glibtop_get_proc_state_p): Fixed copy/paste error
	while setting buf->state.
This commit is contained in:
Benoît Dejean
2004-07-15 20:53:53 +00:00
parent 9e1b0a2814
commit 18abf86346
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2004-07-15 Benoît Dejean <tazforever@dlfp.org>
* procstate.c: (glibtop_get_proc_state_p): Fixed copy/paste error
while setting buf->state.
2004-06-07 Benoît Dejean <tazforever@dlfp.org>
* netload.c: (glibtop_get_netload_p):

View File

@@ -124,7 +124,7 @@ glibtop_get_proc_state_p (glibtop *server,
#else
switch (pinfo [0].PROC_STAT) {
case SIDL:
buf->state = 'S';
buf->state = 'D';
break;
case SRUN:
buf->state = 'R';