acid -k: fix procenv() to new data structure
This commit is contained in:
parent
8c9e4efa17
commit
cd357a2b8c
1 changed files with 2 additions and 2 deletions
|
@ -231,8 +231,8 @@ defn procenv(p) {
|
|||
e = p.egrp;
|
||||
complex Egrp e;
|
||||
i=0; loop 1,e.nent do {
|
||||
v = e.ent[i];
|
||||
i = i+1;
|
||||
v = e.ent + i;
|
||||
i = i+sizeofEvalue;
|
||||
complex Evalue v;
|
||||
print(*(v.name\s), "=");
|
||||
printstringn(v.value, v.len);
|
||||
|
|
Loading…
Reference in a new issue