nupa_subcktcall(), swap `hp' and `kp'

neither `hp' nor `kp' will be used any more behind this body
This commit is contained in:
rlar 2017-11-25 14:53:07 +01:00
parent 07112d62fb
commit 71ac5bccc2
1 changed files with 4 additions and 4 deletions

View File

@ -1641,10 +1641,10 @@ nupa_subcktcall(dico_t *dico, char *s, char * const x, char * const inst_name)
if (alfanum(*kp) || *kp == '.') {
/* number, identifier */
char *hp = kp;
while (*kp > ' ')
kp++;
pscopy(&ustr, hp, 0, (int) (kp - hp));
jp = kp;
while (*hp > ' ')
hp++;
pscopy(&ustr, kp, 0, (int) (hp - kp));
jp = hp;
} else if (*kp == '{') {
jp = getexpress(NULL, &ustr, jp);
} else {