Fixing compile error due to wrong type
authorMatthias Wachs <wachs@net.in.tum.de>
Mon, 12 Jul 2010 08:24:21 +0000 (08:24 +0000)
committerMatthias Wachs <wachs@net.in.tum.de>
Mon, 12 Jul 2010 08:24:21 +0000 (08:24 +0000)
src/fs/gnunet-service-fs.c

index 9de8bca5c8538ee98850db2b34f5484a91018aa0..88ce8fd2ed9c15a2af234d9ba007b0a87b6e9072 100644 (file)
@@ -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);
 
 
 /**