From: Matthias Wachs Date: Mon, 12 Jul 2010 08:24:21 +0000 (+0000) Subject: Fixing compile error due to wrong type X-Git-Tag: initial-import-from-subversion-38251~20978 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d3b33bd232126e95b66928dbc32992f5992b4072;p=oweals%2Fgnunet.git Fixing compile error due to wrong type --- 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 @@ * Maximum number of requests (from other peers) that we're * willing to have pending at any given point in time. */ -static uint64_t max_pending_requests = (32 * 1024); +static unsigned long long max_pending_requests = (32 * 1024); /**