scpi/libgpib: Fix format argument in error message.
This commit is contained in:
parent
6703bb2983
commit
27cd728f8a
|
@ -92,7 +92,7 @@ static int scpi_gpib_send(void *priv, const char *command)
|
|||
if (ibcnt < len)
|
||||
{
|
||||
sr_err("Failed to send all of SCPI command: '%s': "
|
||||
"len = %d, ibcnt = .", command, len, ibcnt);
|
||||
"len = %d, ibcnt = %d.", command, len, ibcnt);
|
||||
return SR_ERR;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue