Fix " \t" sequences.
This commit is contained in:
parent
07695f4c18
commit
6984e162e6
3 changed files with 8 additions and 8 deletions
|
|
@ -243,13 +243,13 @@ main(int argc, char *argv[])
|
|||
|
||||
bool write_ndef = true;
|
||||
if (write_options.interactive) {
|
||||
printf ("Write NDEF [yN] ");
|
||||
fgets (buffer, BUFSIZ, stdin);
|
||||
write_ndef = ((buffer[0] == 'y') || (buffer[0] == 'Y'));
|
||||
printf ("Write NDEF [yN] ");
|
||||
fgets (buffer, BUFSIZ, stdin);
|
||||
write_ndef = ((buffer[0] == 'y') || (buffer[0] == 'Y'));
|
||||
} else {
|
||||
printf ("\n");
|
||||
printf ("\n");
|
||||
}
|
||||
|
||||
|
||||
for (int n = 0; n < 40; n++) {
|
||||
memcpy(card_write_keys[n].key, transport_key, sizeof (transport_key));
|
||||
card_write_keys[n].type = MFC_KEY_A;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue