mirror of
https://github.com/irssi/irssi.git
synced 2026-08-23 10:32:31 +02:00
Fix warnings
This commit is contained in:
parent
cf48ac6210
commit
20eca8be58
1 changed files with 2 additions and 2 deletions
|
|
@ -40,7 +40,7 @@ inline static void _network_proxy_clone(struct network_proxy *dst, struct networ
|
||||||
|
|
||||||
inline static void _network_proxy_destroy(struct network_proxy *proxy)
|
inline static void _network_proxy_destroy(struct network_proxy *proxy)
|
||||||
{
|
{
|
||||||
g_free(proxy->host);
|
g_free((void*)proxy->host);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -81,7 +81,7 @@ inline static bool _network_proxy_recv_all(GIOChannel *ch, void *buf_v, size_t l
|
||||||
if (status!=G_IO_STATUS_NORMAL)
|
if (status!=G_IO_STATUS_NORMAL)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
buf = l;
|
buf = (gchar *)l;
|
||||||
len -= l;
|
len -= l;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue