fix newline for hf search

This commit is contained in:
iceman1001 2021-05-09 20:39:43 +02:00
parent 345ce0c3af
commit 615ca521c0

View file

@ -361,6 +361,13 @@ int infoLTO(bool verbose) {
uint8_t type_info[2];
int ret_val = lto_select(serial_number, serial_len, type_info, verbose);
if (verbose == false) {
if (ret_val == PM3_SUCCESS) {
PrintAndLogEx(INFO, "UID......... " _YELLOW_("%s"), sprint_hex_inrow(serial_number, sizeof(serial_number)));
}
lto_switch_off_field();
return ret_val;
}
if (ret_val == PM3_SUCCESS) {
PrintAndLogEx(NORMAL, "");
@ -417,6 +424,7 @@ int infoLTO(bool verbose) {
}
}
}
PrintAndLogEx(NORMAL, "");
lto_switch_off_field();