Extend max length for firmware description & fix typo

This commit is contained in:
Philippe Teuwen 2011-05-25 19:53:45 +00:00
parent 17c63aebb5
commit 96538d052b
10 changed files with 14 additions and 14 deletions

View file

@ -15,7 +15,7 @@ main (int argc, const char *argv[])
// Display libnfc version
const char *acLibnfcVersion = nfc_version ();
printf ("%s use libnfc %s\n", argv[0], acLibnfcVersion);
printf ("%s uses libnfc %s\n", argv[0], acLibnfcVersion);
// Connect using the first available NFC device
pnd = nfc_connect (NULL);

View file

@ -184,7 +184,7 @@ main (int argc, char *argv[])
// Display libnfc version
acLibnfcVersion = nfc_version ();
printf ("%s use libnfc %s\n", argv[0], acLibnfcVersion);
printf ("%s uses libnfc %s\n", argv[0], acLibnfcVersion);
if (pnd == NULL) {
ERR("Unable to connect to NFC device");

View file

@ -71,7 +71,7 @@ main (int argc, const char *argv[])
// Display libnfc version
acLibnfcVersion = nfc_version ();
printf ("%s use libnfc %s\n", argv[0], acLibnfcVersion);
printf ("%s uses libnfc %s\n", argv[0], acLibnfcVersion);
pnddDevices = parse_args (argc, argv, &szDeviceFound, &verbose);
#ifdef HAVE_LIBUSB

View file

@ -81,7 +81,7 @@ main (int argc, const char *argv[])
errx (1, "usage: %s", argv[0]);
}
printf ("%s use libnfc %s\n", argv[0], acLibnfcVersion);
printf ("%s uses libnfc %s\n", argv[0], acLibnfcVersion);
if (szFound == 0) {
if (!(pnddDevices = malloc (MAX_DEVICE_COUNT * sizeof (*pnddDevices)))) {

View file

@ -195,7 +195,7 @@ main (int argc, char *argv[])
}
// Display libnfc version
printf ("%s use libnfc %s\n", argv[0], acLibnfcVersion);
printf ("%s uses libnfc %s\n", argv[0], acLibnfcVersion);
#ifdef WIN32
signal (SIGINT, (void (__cdecl *) (int)) intr_hdlr);

View file

@ -101,7 +101,7 @@ main (int argc, char *argv[])
}
// Display libnfc version
printf ("%s use libnfc %s\n", argv[0], acLibnfcVersion);
printf ("%s uses libnfc %s\n", argv[0], acLibnfcVersion);
#ifdef WIN32
signal (SIGINT, (void (__cdecl *) (int)) intr_hdlr);

View file

@ -64,7 +64,7 @@ main (int argc, const char *argv[])
}
// Display libnfc version
acLibnfcVersion = nfc_version ();
printf ("%s use libnfc %s\n", argv[0], acLibnfcVersion);
printf ("%s uses libnfc %s\n", argv[0], acLibnfcVersion);
if (!(pnddDevices = malloc (MAX_DEVICE_COUNT * sizeof (*pnddDevices)))) {
fprintf (stderr, "malloc() failed\n");

View file

@ -128,7 +128,7 @@ main (int argc, const char *argv[])
// Display libnfc version
const char *acLibnfcVersion = nfc_version ();
printf ("%s use libnfc %s\n", argv[0], acLibnfcVersion);
printf ("%s uses libnfc %s\n", argv[0], acLibnfcVersion);
// Connect using the first available NFC device
pnd = nfc_connect (NULL);