-fix printf
authorChristian Grothoff <christian@grothoff.org>
Mon, 23 Dec 2013 21:14:26 +0000 (21:14 +0000)
committerChristian Grothoff <christian@grothoff.org>
Mon, 23 Dec 2013 21:14:26 +0000 (21:14 +0000)
AUTHORS
src/ats/gnunet-service-ats_addresses.c

diff --git a/AUTHORS b/AUTHORS
index 870282a409df64c1da161d3d9e11c0d16da96823..d21b6e333d870032231516b8e00b537bd55fa424 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -10,20 +10,22 @@ Alejandra Morales
 Andreas Fuchs
 Bart Polot <bart@net.in.tum.de>
 Bruno Cabral <bcabral@uw.edu>
+Christian Fuchs <christian.fuchs@cfuchs.net>
 Christian Grothoff <christian@grothoff.org>
 Claudiu Olteanu
 David Barksdale
 Fabian Oehlmann
 Florian Dold <florian.dold@gmail.com>
+Gabor X Toth <tg-x.net>
 LRN <lrn1986@gmail.com>
+Martin Schanzenbach <schanzen@in.tum.de>
 Matthias Wachs <wachs@net.in.tum.de>
+Maximilian Szengel <gnunet@maxsz.de>
 Nils Durner <durner@gnunet.org>
 Simon Dieterle
 Sree Harsha Totakura --- http://sreeharsha.totakura.in/
-Martin Schanzenbach <schanzen@in.tum.de>
-Maximilian Szengel <gnunet@maxsz.de>
-Christian Fuchs <christian.fuchs@cfuchs.net>
-Gabor X Toth <tg-x.net>
+Stephan A. Posselt
+Werner Koch <wk@gnupg.org>
 
 Code contributions also came from:
 Adam Warrington [ UPnP ]
index 2cdc12766183bde80ffa03aa07193bcb93c57646..f52d1d7fda9f28009c1e46601cfecc30e73e7c3d 100644 (file)
@@ -1383,10 +1383,11 @@ eval_sum_bw_used (void *cls, const struct GNUNET_PeerIdentity *id, void *obj)
         ctx->bandwidth_out_assigned[c] += ntohl (addr->assigned_bw_out.value__);
       }
     }
-    GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Active address in  %s with (in/out) %llu/%llu Bps\n",
-        GNUNET_ATS_print_network_type(net),
-        ntohl (addr->assigned_bw_in.value__),
-        ntohl (addr->assigned_bw_out.value__));
+    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+                "Active address in  %s with (in/out) %u/%u Bps\n",
+                GNUNET_ATS_print_network_type (net),
+                (unsigned int) ntohl (addr->assigned_bw_in.value__),
+                (unsigned int) ntohl (addr->assigned_bw_out.value__));
   }
   return GNUNET_OK;
 }