summaryrefslogtreecommitdiffstats
path: root/contrib/binutils/libiberty/fibheap.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/binutils/libiberty/fibheap.c')
-rw-r--r--contrib/binutils/libiberty/fibheap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/binutils/libiberty/fibheap.c b/contrib/binutils/libiberty/fibheap.c
index 0ba9b8d..bcecf80 100644
--- a/contrib/binutils/libiberty/fibheap.c
+++ b/contrib/binutils/libiberty/fibheap.c
@@ -66,7 +66,7 @@ fibnode_new ()
{
fibnode_t node;
- node = xcalloc (1, sizeof *node);
+ node = (fibnode_t) xcalloc (1, sizeof *node);
node->left = node;
node->right = node;
@@ -218,7 +218,7 @@ fibheap_replace_key_data (heap, node, key, data)
void *data;
{
void *odata;
- int okey;
+ fibheapkey_t okey;
fibnode_t y;
/* If we wanted to, we could actually do a real increase by redeleting and
OpenPOWER on IntegriCloud