findsubckt(), fix lvalue
This commit is contained in:
parent
b3c40a77cf
commit
51405f8ee7
|
|
@ -559,7 +559,7 @@ findsubckt(dico_t *dico, const char * const s)
|
||||||
while ((k_ptr - 1 >= s) && (*(k_ptr-1) <= ' '))
|
while ((k_ptr - 1 >= s) && (*(k_ptr-1) <= ' '))
|
||||||
k_ptr--;
|
k_ptr--;
|
||||||
|
|
||||||
name_e - 1 = k_ptr - 1;
|
name_e = k_ptr;
|
||||||
|
|
||||||
while ((k_ptr - 1 >= s) && (*(k_ptr-1) > ' '))
|
while ((k_ptr - 1 >= s) && (*(k_ptr-1) > ' '))
|
||||||
k_ptr--;
|
k_ptr--;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue