findsubckt(), fix lvalue

This commit is contained in:
rlar 2017-11-18 18:20:15 +01:00
parent 940eb2a258
commit a9c2f81878
1 changed files with 1 additions and 1 deletions

View File

@ -559,7 +559,7 @@ findsubckt(dico_t *dico, const char * const s)
while (((k_ptr - s) >= 0) && (s[(k_ptr - s)] <= ' '))
k_ptr--;
(j_ptr - s) = (int) (k_ptr - s);
j_ptr = k_ptr;
while (((k_ptr - s) >= 0) && (s[(k_ptr - s)] > ' '))
k_ptr--;