mirror of
https://github.com/pdewacht/brlaser
synced 2025-04-06 04:46:44 +02:00
Kill a harmless dead store
Just because clang's scan-build complained about it.
This commit is contained in:
parent
c3999acbec
commit
19edb1767b
@ -143,7 +143,6 @@ bool read_page() {
|
|||||||
line.clear();
|
line.clear();
|
||||||
while ((ch = getc(in_file)) >= 0) {
|
while ((ch = getc(in_file)) >= 0) {
|
||||||
if (ch == '\f') {
|
if (ch == '\f') {
|
||||||
in_esc = false;
|
|
||||||
break;
|
break;
|
||||||
} else if (ch == 033) {
|
} else if (ch == 033) {
|
||||||
in_esc = true;
|
in_esc = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user