diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-03-30 22:26:36 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-03-30 22:26:36 +0200 |
| commit | 901402c99018422c994bdb297e3ba404969c88ea (patch) | |
| tree | 98602c73a00af57fb7efcb36e4e3cbae2c0ce3a8 /src/lst/ft_lstbsearch.c | |
| parent | 40ed37c023627726a5c9c6928284e9f042dc0fa4 (diff) | |
| download | libft-901402c99018422c994bdb297e3ba404969c88ea.tar.gz libft-901402c99018422c994bdb297e3ba404969c88ea.tar.bz2 libft-901402c99018422c994bdb297e3ba404969c88ea.zip | |
Added documentation for ht and lst
Diffstat (limited to 'src/lst/ft_lstbsearch.c')
| -rw-r--r-- | src/lst/ft_lstbsearch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lst/ft_lstbsearch.c b/src/lst/ft_lstbsearch.c index d3dc7e4..0c48eb0 100644 --- a/src/lst/ft_lstbsearch.c +++ b/src/lst/ft_lstbsearch.c @@ -46,11 +46,11 @@ static t_ftlst *st_lstbsearch_rec(t_ftlst *lst, t_ftlst *last, return (NULL); if (mid->next == NULL) { - if (cmp(ref, mid->content) == 0) + if (cmp(ref, mid->data) == 0) return (mid); return (NULL); } - res = cmp(ref, mid->next->content); + res = cmp(ref, mid->next->data); if (res < 0) return (st_lstbsearch_rec(lst, mid, cmp, ref)); else if (res > 0) |
