hameg-hmo: Silence warning about format security.

The command for fetching the sample rate while in single shot mode doesn't take
an argument so the snprintf here is redundant.
This commit is contained in:
poljar (Damir Jelić) 2014-01-16 19:42:27 +01:00 committed by Bert Vermeulen
parent ef1a346b0b
commit c06c24d2d3
1 changed files with 4 additions and 4 deletions

View File

@ -453,11 +453,11 @@ SR_PRIV int hmo_update_sample_rate(const struct sr_dev_inst *sdi)
/* No channel is active, ask the instrument for the sample rate
* in single shot mode */
if (!channel_found) {
g_snprintf(tmp_str, sizeof(tmp_str),
(*config->scpi_dialect)[SCPI_CMD_GET_SAMPLE_RATE]);
if (sr_scpi_get_float(sdi->conn, tmp_str, &tmp_float) != SR_OK)
if (sr_scpi_get_float(sdi->conn,
(*config->scpi_dialect)[SCPI_CMD_GET_SAMPLE_RATE],
&tmp_float) != SR_OK)
return SR_ERR;
state->sample_rate = tmp_float;
} else {
if (sr_scpi_get_int(sdi->conn, tmp_str, &tmp) != SR_OK)