aboutsummaryrefslogtreecommitdiff
path: root/src/social/gnunet-social.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-03-17 18:17:12 +0100
committerChristian Grothoff <christian@grothoff.org>2017-03-17 18:17:12 +0100
commitbe33176a8897f155a1c916d04373b143926b5106 (patch)
treea144730c4e34aa82f1b4427794768f04883d840c /src/social/gnunet-social.c
parent17d34d5e094c2f8a90717b07e3a711d6e2c15903 (diff)
downloadgnunet-be33176a8897f155a1c916d04373b143926b5106.tar.gz
gnunet-be33176a8897f155a1c916d04373b143926b5106.zip
fix types
Diffstat (limited to 'src/social/gnunet-social.c')
-rw-r--r--src/social/gnunet-social.c8
1 files 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;
116static char *opt_name; 116static char *opt_name;
117 117
118/** --start */ 118/** --start */
119static uint64_t opt_start; 119static unsigned long long opt_start;
120 120
121/** --until */ 121/** --until */
122static uint64_t opt_until; 122static unsigned long long opt_until;
123 123
124/** --limit */ 124/** --limit */
125static long long unsigned int opt_limit; 125static unsigned long long opt_limit;
126 126
127 127
128/* global vars */ 128/* global vars */
@@ -1318,7 +1318,7 @@ main (int argc, char *const *argv)
1318 "gns", 1318 "gns",
1319 "GNS_NAME", 1319 "GNS_NAME",
1320 gettext_noop ("GNS name"), 1320 gettext_noop ("GNS name"),
1321 &opt_gns), 1321 &opt_gns),
1322 1322
1323 GNUNET_GETOPT_OPTION_STRING ('i', 1323 GNUNET_GETOPT_OPTION_STRING ('i',
1324 "peer", 1324 "peer",