Added breaks in switch statements

This commit is contained in:
Nate Choe
2022-06-06 15:11:41 -05:00
parent 338ed9f95e
commit d21ae6b2ca

View File

@@ -88,6 +88,7 @@ static int writefile(struct expandfile *file, FILE *out) {
out); out);
} }
} }
break;
} }
case AUTOESCAPE_CHAR: case AUTOESCAPE_CHAR:
for (++i; data->data[i] != ESCAPE_CHAR && for (++i; data->data[i] != ESCAPE_CHAR &&
@@ -110,6 +111,7 @@ static int writefile(struct expandfile *file, FILE *out) {
break; break;
} }
} }
break;
} }
} }
else else