gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] branch master updated: Fixed int to unsigned casti


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: Fixed int to unsigned casting warning.
Date: Fri, 05 Jan 2018 18:19:22 +0100

This is an automated email from the git hooks/post-receive script.

arny pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 70017fcfb Fixed int to unsigned casting warning.
70017fcfb is described below

commit 70017fcfb707104555107e07df5dffd1508ca7fe
Author: anryko <address@hidden>
AuthorDate: Fri Jan 5 18:19:12 2018 +0100

    Fixed int to unsigned casting warning.
---
 src/transport/plugin_transport_udp.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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;

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]