ipdbg-la: Drop some unneeded casts.

This commit is contained in:
Uwe Hermann 2018-08-30 01:11:03 +02:00
parent 4465837b7d
commit 703fb45490
1 changed files with 4 additions and 4 deletions

View File

@ -160,7 +160,7 @@ SR_PRIV int ipdbg_la_tcp_send(struct ipdbg_la_tcp *tcp,
const uint8_t *buf, size_t len) const uint8_t *buf, size_t len)
{ {
int out; int out;
out = send(tcp->socket, (char*)buf, len, 0); out = send(tcp->socket, buf, len, 0);
if (out < 0) { if (out < 0) {
sr_err("Send error: %s", g_strerror(errno)); sr_err("Send error: %s", g_strerror(errno));
@ -292,7 +292,7 @@ SR_PRIV int ipdbg_la_receive_data(int fd, int revents, void *cb_data)
(void)fd; (void)fd;
(void)revents; (void)revents;
sdi = (const struct sr_dev_inst *)cb_data; sdi = cb_data;
if (!sdi) if (!sdi)
return FALSE; return FALSE;
@ -456,11 +456,11 @@ SR_PRIV int send_escaping(struct ipdbg_la_tcp *tcp, uint8_t *dataToSend,
while (length--) { while (length--) {
uint8_t payload = *dataToSend++; uint8_t payload = *dataToSend++;
if (payload == (uint8_t) CMD_RESET) if (payload == CMD_RESET)
if (ipdbg_la_tcp_send(tcp, &escape, 1) != SR_OK) if (ipdbg_la_tcp_send(tcp, &escape, 1) != SR_OK)
sr_warn("Couldn't send escape"); sr_warn("Couldn't send escape");
if (payload == (uint8_t) CMD_ESCAPE) if (payload == CMD_ESCAPE)
if (ipdbg_la_tcp_send(tcp, &escape, 1) != SR_OK) if (ipdbg_la_tcp_send(tcp, &escape, 1) != SR_OK)
sr_warn("Couldn't send escape"); sr_warn("Couldn't send escape");