Bug fix: EM_MESARG gives em_arg, not em_args!
This commit is contained in:
parent
f4e7c2f6ce
commit
872cd52f99
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ EM_getinstr()
|
||||||
args = argp;
|
args = argp;
|
||||||
argp = args->em_next;
|
argp = args->em_next;
|
||||||
p->em_type = EM_MESARG;
|
p->em_type = EM_MESARG;
|
||||||
p->em_args = args;
|
p->em_arg = args;
|
||||||
args->em_next = 0;
|
args->em_next = 0;
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue