fix types
authorChristian Grothoff <christian@grothoff.org>
Fri, 17 Mar 2017 17:17:12 +0000 (18:17 +0100)
committerChristian Grothoff <christian@grothoff.org>
Fri, 17 Mar 2017 17:17:12 +0000 (18:17 +0100)
src/social/gnunet-social.c

index baeca30822a43b4c5afc4924d3fcaac5f3c4addb..4a46fdc99c11464a4c346c181fb4ffa869381910 100644 (file)
@@ -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",