minor fixes

This commit is contained in:
John Jones 2017-03-21 12:11:41 -05:00
parent 8edc94509c
commit 83242b0046
3 changed files with 9 additions and 7 deletions

View file

@ -40,5 +40,5 @@ void *ipfs_bootstrap_swarm(void* param) {
void *ipfs_bootstrap_routing(void* param) {
struct IpfsNode* local_node = (struct IpfsNode*)param;
local_node->routing = ipfs_routing_new_kademlia(local_node, &local_node->identity->private_key, NULL);
return NULL;
return (void*)2;
}