1
0
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:
Peter De Wachter 2014-07-07 13:03:57 +02:00
parent c3999acbec
commit 19edb1767b

View File

@ -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;