Unnecessary return

This commit is contained in:
Devine Lu Linvega 2024-05-24 18:42:00 -07:00
parent 6f5b5fc36c
commit 13ec84d7ef
1 changed files with 2 additions and 3 deletions

View File

@ -237,10 +237,9 @@ parse_frag(char **side, char *s)
{
char c, *cap;
while((c = *s) && c == ' ') s++;
if(c == ')' || (c == '<' && s[1] == '>') || (c == '>' && s[1] == '<')) {
if(c == ')' || (c == '<' && s[1] == '>') || (c == '>' && s[1] == '<'))
*side = dict_, *dict_++ = 0;
return s;
} else {
else {
cap = walk(s), *side = dict_;
if(c == '(')
dict_ = copy(s + 1, dict_, cap - s - 2);