Remove extra whitespaces/tabs before EOL.
find . -name '*.[ch]' | xargs perl -pi -e 's/\t+$//; s/ +$//' Thanks to Ludovic.
This commit is contained in:
parent
167238c60d
commit
26865bbc19
66 changed files with 483 additions and 483 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/**
|
||||
/**
|
||||
* @file quick_start_example1.c
|
||||
* @brief Quick start example that presents how to use libnfc
|
||||
*/
|
||||
|
|
@ -18,7 +18,7 @@ main (int argc, const char *argv[])
|
|||
{
|
||||
nfc_device *pnd;
|
||||
nfc_target nt;
|
||||
|
||||
|
||||
nfc_init (NULL);
|
||||
|
||||
// Display libnfc version
|
||||
|
|
@ -35,7 +35,7 @@ main (int argc, const char *argv[])
|
|||
// Set opened NFC device to initiator mode
|
||||
if (nfc_initiator_init (pnd) < 0) {
|
||||
nfc_perror (pnd, "nfc_initiator_init");
|
||||
exit (EXIT_FAILURE);
|
||||
exit (EXIT_FAILURE);
|
||||
}
|
||||
|
||||
printf ("NFC reader: %s opened\n", nfc_device_get_name (pnd));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue