From be33176a8897f155a1c916d04373b143926b5106 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Fri, 17 Mar 2017 18:17:12 +0100 Subject: [PATCH] fix types --- src/social/gnunet-social.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/social/gnunet-social.c b/src/social/gnunet-social.c index baeca3082..4a46fdc99 100644 --- a/src/social/gnunet-social.c +++ b/src/social/gnunet-social.c @@ -116,13 +116,13 @@ static char *opt_data; static char *opt_name; /** --start */ -static uint64_t opt_start; +static unsigned long long opt_start; /** --until */ -static uint64_t opt_until; +static unsigned long long opt_until; /** --limit */ -static long long unsigned int opt_limit; +static unsigned long long opt_limit; /* global vars */ @@ -1318,7 +1318,7 @@ main (int argc, char *const *argv) "gns", "GNS_NAME", gettext_noop ("GNS name"), - &opt_gns), + &opt_gns), GNUNET_GETOPT_OPTION_STRING ('i', "peer", -- 2.25.1