Fix signedness compiler warnings.

This commit is contained in:
Guus Sliepen 2006-03-19 13:06:21 +00:00
parent fb1cda2ca4
commit af95368c0f
8 changed files with 32 additions and 31 deletions

View file

@ -163,7 +163,7 @@ bool send_tcppacket(connection_t *c, vpn_packet_t *packet)
if(!send_request(c, "%d %hd", PACKET, packet->len))
return false;
return send_meta(c, packet->data, packet->len);
return send_meta(c, (char *)packet->data, packet->len);
}
bool tcppacket_h(connection_t *c)