From f2de541f3a44913c69a1bd222587d0643ee33e49 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Mon, 9 Aug 2021 15:09:56 +0200 Subject: -fix bit shift op --- src/setu/gnunet-service-setu.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/setu/gnunet-service-setu.c b/src/setu/gnunet-service-setu.c index b01b897d8..38027983a 100644 --- a/src/setu/gnunet-service-setu.c +++ b/src/setu/gnunet-service-setu.c @@ -2146,11 +2146,15 @@ send_ibf (struct Operation *op, LOG (GNUNET_ERROR_TYPE_DEBUG, "sending ibf of size %u\n", - 1 << ibf_size); + (unsigned int) ibf_size); { char name[64]; - GNUNET_snprintf (name, sizeof(name), "# sent IBF (order %u)", ibf_size); + + GNUNET_snprintf (name, + sizeof(name), + "# sent IBF (order %u)", + ibf_size); GNUNET_STATISTICS_update (_GSS_statistics, name, 1, GNUNET_NO); } -- cgit v1.2.3