aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2010-07-12 08:24:21 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2010-07-12 08:24:21 +0000
commitd3b33bd232126e95b66928dbc32992f5992b4072 (patch)
treea3d580a76026d3d13cf7145ae141ca55a373e664
parent3ed8e42b3f52c56d64929e3bab244a3489868bb5 (diff)
downloadgnunet-d3b33bd232126e95b66928dbc32992f5992b4072.tar.gz
gnunet-d3b33bd232126e95b66928dbc32992f5992b4072.zip
Fixing compile error due to wrong type
-rw-r--r--src/fs/gnunet-service-fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs/gnunet-service-fs.c b/src/fs/gnunet-service-fs.c
index 9de8bca5c..88ce8fd2e 100644
--- a/src/fs/gnunet-service-fs.c
+++ b/src/fs/gnunet-service-fs.c
@@ -78,7 +78,7 @@
78 * Maximum number of requests (from other peers) that we're 78 * Maximum number of requests (from other peers) that we're
79 * willing to have pending at any given point in time. 79 * willing to have pending at any given point in time.
80 */ 80 */
81static uint64_t max_pending_requests = (32 * 1024); 81static unsigned long long max_pending_requests = (32 * 1024);
82 82
83 83
84/** 84/**