[misc] The "all data sent" message never happened.

(Thanks to Thomas Kaiser for pointing this out)
This commit is contained in:
Solomon Peachy 2012-11-13 19:30:43 -05:00
parent e7f45c22b2
commit d7e074f0a4
2 changed files with 3 additions and 3 deletions

View File

@ -518,9 +518,9 @@ top:
}
}
state = S_FINISHED;
break;
/* Intentional Fallthrough */
case S_FINISHED:
DEBUG("All data sent to printer!\n");
DEBUG("All data sent to printer!\n");
break;
}
if (state != S_FINISHED)

View File

@ -235,7 +235,7 @@ top:
dump_data(printers[printer_type].foot_length, 0, data_fd, dev_fd, buffer, BUF_LEN);
}
state = S_FINISHED;
break;
/* Intentional Fallthrough */
case S_FINISHED:
DEBUG("All data sent to printer!\n");
break;