Fix the fix in revision r1322
clang warning: arygon.c:115:118: warning: data argument not used by format string [-Wformat-extra-args] ..."%s", "Trying to find ARYGON device on serial port: %s at %d bauds.", acPort,... ~~~~ ^ 1 warning generated.
This commit is contained in:
parent
cf56496ee9
commit
d98b5d00ab
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ arygon_probe (nfc_connstring connstrings[], size_t connstrings_len, size_t *pszD
|
||||||
|
|
||||||
while ((acPort = acPorts[iDevice++])) {
|
while ((acPort = acPorts[iDevice++])) {
|
||||||
sp = uart_open (acPort);
|
sp = uart_open (acPort);
|
||||||
log_put (LOG_CATEGORY, NFC_PRIORITY_TRACE, "%s", "Trying to find ARYGON device on serial port: %s at %d bauds.", acPort, ARYGON_DEFAULT_SPEED);
|
log_put (LOG_CATEGORY, NFC_PRIORITY_TRACE, "Trying to find ARYGON device on serial port: %s at %d bauds.", acPort, ARYGON_DEFAULT_SPEED);
|
||||||
|
|
||||||
if ((sp != INVALID_SERIAL_PORT) && (sp != CLAIMED_SERIAL_PORT)) {
|
if ((sp != INVALID_SERIAL_PORT) && (sp != CLAIMED_SERIAL_PORT)) {
|
||||||
// We need to flush input to be sure first reply does not comes from older byte transceive
|
// We need to flush input to be sure first reply does not comes from older byte transceive
|
||||||
|
|
Loading…
Reference in a new issue