scpi/libgpib: Fix format argument in error message.

This commit is contained in:
Bert Vermeulen 2015-09-21 12:39:33 +02:00
parent 6703bb2983
commit 27cd728f8a
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}