Fix variable conflict in ok_to_send (#14351)

This commit is contained in:
LinFor 2019-06-22 03:04:30 +03:00 committed by Scott Lahteine
parent c41b005f33
commit 0f6f5132c1

View File

@ -225,9 +225,9 @@ void GCodeQueue::enqueue_now_P(PGM_P const pgcode) {
*/
void GCodeQueue::ok_to_send() {
#if NUM_SERIAL > 1
const int16_t p = port[index_r];
if (p < 0) return;
PORT_REDIRECT(p);
const int16_t pn = port[index_r];
if (pn < 0) return;
PORT_REDIRECT(pn);
#endif
if (!send_ok[index_r]) return;
SERIAL_ECHOPGM(MSG_OK);