aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_rps_service.h
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2015-02-17 14:06:11 +0000
committerJulius Bünger <buenger@mytum.de>2015-02-17 14:06:11 +0000
commitc7e3322d889a8a759722a4ba03a4fbabcb561fd5 (patch)
treed9a4335b809da19ced670f47bf8a0bded6d6c80b /src/include/gnunet_rps_service.h
parent327691efff3ce22f8c385973cf204a8913ca587e (diff)
downloadgnunet-c7e3322d889a8a759722a4ba03a4fbabcb561fd5.tar.gz
gnunet-c7e3322d889a8a759722a4ba03a4fbabcb561fd5.zip
- fixed conflicting int type
Diffstat (limited to 'src/include/gnunet_rps_service.h')
-rw-r--r--src/include/gnunet_rps_service.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/gnunet_rps_service.h b/src/include/gnunet_rps_service.h
index be388ba32..a406f604a 100644
--- a/src/include/gnunet_rps_service.h
+++ b/src/include/gnunet_rps_service.h
@@ -94,7 +94,7 @@ GNUNET_RPS_request_peers (struct GNUNET_RPS_Handle *h, uint32_t n,
94 * @param ids the ids of the peers seeded 94 * @param ids the ids of the peers seeded
95 */ 95 */
96 void 96 void
97GNUNET_RPS_seed_ids (struct GNUNET_RPS_Handle *h, uint64_t n, 97GNUNET_RPS_seed_ids (struct GNUNET_RPS_Handle *h, uint32_t n,
98 const struct GNUNET_PeerIdentity * ids); 98 const struct GNUNET_PeerIdentity * ids);
99 99
100/** 100/**