Firmware: return inserts blank link

Change-Id: I86f943cb8cb872a25999af378aefdd4987083950
This commit is contained in:
David Banks 2019-11-09 12:41:19 +00:00
parent 10b6c6a744
commit 14a0daaffd

View File

@ -1732,9 +1732,9 @@ int main(void) {
last = (last + 1) & (HISTORY_LENGTH - 1);
strcpy(history[last], command);
}
// Execute the command
dispatchCmd(command);
}
// Execute the command
dispatchCmd(command);
// Reset the history cursor to the current slot
index = -1;
}