Fix two compiler warnings.

This commit is contained in:
Uwe Hermann 2016-04-23 17:37:01 +02:00
parent f4f273ce1e
commit f07298663f
2 changed files with 2 additions and 1 deletions

View File

@ -734,6 +734,7 @@ SR_PRIV int hmo_receive_data(int fd, int revents, void *cb_data)
struct sr_datafeed_logic logic;
(void)fd;
(void)revents;
data = NULL;

View File

@ -127,7 +127,7 @@ static int scpi_vxi_send(void *priv, const char *command)
write_parms.lock_timeout = VXI_DEFAULT_TIMEOUT_MS;
write_parms.flags = DF_END;
write_parms.data.data_len = MIN(len, vxi->max_send_size);
write_parms.data.data_val = command;
write_parms.data.data_val = (char *)command;
if (!(write_resp = device_write_1(&write_parms, vxi->client))
|| write_resp->error) {