summaryrefslogtreecommitdiff
path: root/src/pqueue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pqueue.h')
-rw-r--r--src/pqueue.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pqueue.h b/src/pqueue.h
index e9ac4b7d1..6826055e5 100644
--- a/src/pqueue.h
+++ b/src/pqueue.h
@@ -13,9 +13,9 @@ typedef int (*git_pqueue_cmp)(void *a, void *b);
/** the priority queue handle */
typedef struct {
- size_t size, avail, step;
- git_pqueue_cmp cmppri;
- void **d;
+ size_t size, avail, step;
+ git_pqueue_cmp cmppri;
+ void **d;
} git_pqueue;
@@ -23,7 +23,7 @@ typedef struct {
* initialize the queue
*
* @param n the initial estimate of the number of queue items for which memory
- * should be preallocated
+ * should be preallocated
* @param cmppri the callback function to compare two nodes of the queue
*
* @Return the handle or NULL for insufficent memory