aboutsummaryrefslogtreecommitdiff
path: root/src/ht/ft_htnew.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-05-09 12:31:50 +0200
committerCharles <sircharlesaze@gmail.com>2020-05-09 12:31:50 +0200
commit02abc030a68cb2fdd2f21c96db830ec8cb9176ad (patch)
tree0c2d67c94a3618639fc2cd29d8bc78820e41c254 /src/ht/ft_htnew.c
parentb5124347359833fcde33452978c62133879c6c9e (diff)
parent3a2d19df9e509d0b015c786eb02f8315ff0ad91c (diff)
downloadlibft-02abc030a68cb2fdd2f21c96db830ec8cb9176ad.tar.gz
libft-02abc030a68cb2fdd2f21c96db830ec8cb9176ad.tar.bz2
libft-02abc030a68cb2fdd2f21c96db830ec8cb9176ad.zip
Merge remote-tracking branch 'origin/minishell'
Diffstat (limited to 'src/ht/ft_htnew.c')
-rw-r--r--src/ht/ft_htnew.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ht/ft_htnew.c b/src/ht/ft_htnew.c
index e5335d2..585c211 100644
--- a/src/ht/ft_htnew.c
+++ b/src/ht/ft_htnew.c
@@ -6,11 +6,10 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/30 08:19:16 by cacharle #+# #+# */
-/* Updated: 2020/02/28 12:23:43 by cacharle ### ########.fr */
+/* Updated: 2020/04/04 22:34:55 by charles ### ########.fr */
/* */
/* ************************************************************************** */
-#include "libft.h"
#include "libft_ht.h"
/*
@@ -19,7 +18,7 @@
** \return Created hash table or NULL is an allocation failed
*/
-t_ftht *ft_htnew(t_ftsize size)
+t_ftht *ft_htnew(size_t size)
{
t_ftht *ht;
@@ -27,7 +26,7 @@ t_ftht *ft_htnew(t_ftsize size)
return (NULL);
if ((ht = (t_ftht*)malloc(sizeof(t_ftht))) == NULL)
return (NULL);
- ht->buckets = (t_ftht_bucket*)ft_calloc(size, sizeof(t_ftht_entry));
+ ht->buckets = (t_ftlst**)ft_calloc(size, sizeof(t_ftlst*));
if (ht->buckets == NULL)
{
free(ht);