From 70017fcfb707104555107e07df5dffd1508ca7fe Mon Sep 17 00:00:00 2001 From: anryko Date: Fri, 5 Jan 2018 18:19:12 +0100 Subject: Fixed int to unsigned casting warning. --- src/transport/plugin_transport_udp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/transport/plugin_transport_udp.c') diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c index f214e7be4..0daac4443 100644 --- a/src/transport/plugin_transport_udp.c +++ b/src/transport/plugin_transport_udp.c @@ -3839,9 +3839,9 @@ libgnunet_plugin_transport_udp_init (void *cls) unsigned long long port; unsigned long long aport; unsigned long long udp_max_bps; - unsigned long long enable_v6; - unsigned long long enable_broadcasting; - unsigned long long enable_broadcasting_recv; + int enable_v6; + int enable_broadcasting; + int enable_broadcasting_recv; char *bind4_address; char *bind6_address; struct GNUNET_TIME_Relative interval; -- cgit v1.2.3