aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-04-30 12:25:03 +0000
committerChristian Grothoff <christian@grothoff.org>2015-04-30 12:25:03 +0000
commit620ca24f5a6835fec7b9b8d77a6e06308e08d2ba (patch)
tree03996c0c9021a613f765d49f5a4629473e525289 /src/include
parent8476cb4f1ba88a67ea5cdc5abd02ac3982caf311 (diff)
downloadgnunet-620ca24f5a6835fec7b9b8d77a6e06308e08d2ba.tar.gz
gnunet-620ca24f5a6835fec7b9b8d77a6e06308e08d2ba.zip
-nicer indentation
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_container_lib.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h
index d8886c504..778e5b84b 100644
--- a/src/include/gnunet_container_lib.h
+++ b/src/include/gnunet_container_lib.h
@@ -1777,11 +1777,11 @@ GNUNET_CONTAINER_heap_node_get_cost (const struct GNUNET_CONTAINER_HeapNode
1777 * @return #GNUNET_YES if we should continue to iterate, 1777 * @return #GNUNET_YES if we should continue to iterate,
1778 * #GNUNET_NO if not. 1778 * #GNUNET_NO if not.
1779 */ 1779 */
1780typedef int (*GNUNET_CONTAINER_HeapIterator) (void *cls, 1780typedef int
1781 struct GNUNET_CONTAINER_HeapNode * 1781(*GNUNET_CONTAINER_HeapIterator) (void *cls,
1782 node, void *element, 1782 struct GNUNET_CONTAINER_HeapNode *node,
1783 GNUNET_CONTAINER_HeapCostType 1783 void *element,
1784 cost); 1784 GNUNET_CONTAINER_HeapCostType cost);
1785 1785
1786 1786
1787/** 1787/**
@@ -1823,7 +1823,8 @@ GNUNET_CONTAINER_heap_walk_get_next (struct GNUNET_CONTAINER_Heap *heap);
1823 * @return node for the new element 1823 * @return node for the new element
1824 */ 1824 */
1825struct GNUNET_CONTAINER_HeapNode * 1825struct GNUNET_CONTAINER_HeapNode *
1826GNUNET_CONTAINER_heap_insert (struct GNUNET_CONTAINER_Heap *heap, void *element, 1826GNUNET_CONTAINER_heap_insert (struct GNUNET_CONTAINER_Heap *heap,
1827 void *element,
1827 GNUNET_CONTAINER_HeapCostType cost); 1828 GNUNET_CONTAINER_HeapCostType cost);
1828 1829
1829 1830