GSocket: Use correct type for SO_BROADCAST parameter

This commit is contained in:
Sebastian Dröge 2012-01-16 19:22:28 +01:00
parent d44bb6ef64
commit 76f46b4f33

View File

@ -1400,7 +1400,7 @@ g_socket_set_broadcast (GSocket *socket,
gboolean broadcast) gboolean broadcast)
{ {
int result; int result;
guchar value; gint value;
g_return_if_fail (G_IS_SOCKET (socket)); g_return_if_fail (G_IS_SOCKET (socket));