inp_modify_exp(), cleanup #15/17, use postincrement

This commit is contained in:
rlar 2014-11-03 19:22:21 +01:00
parent b58c8252cc
commit b37db50aed
1 changed files with 2 additions and 2 deletions

View File

@ -5559,8 +5559,8 @@ inp_modify_exp(char* expr)
while (*s != ')') {
buf[i++] = *s++;
}
buf[i] = *s++;
buf[i+1] = '\0';
buf[i++] = *s++;
buf[i] = '\0';
wl->wl_word = copy(buf);
} else {
while (isalnum(*s) ||